@extends('layouts.app') @section('content')
Customer List

Customer Records and Transactions, you can view all transactions by customer

View Customer Transactions Today
Add Customer

Add new customer to the system by clicking Add customer

@foreach($customers as $customer) @endforeach
Customer Phone Address Entered By Last Purc. Branch Action
{{@strtoupper($customer->customer_name)}} {{$customer->customer_phone}} {{@strtoupper($customer->customer_address)}} {{@strtoupper($customer->customer_enteredby)}} {{@strtoupper($customer->customer_branch)}} @if(auth()->user()->role == "Sales Person") Order @endif
{{$customers->links()}}
@endsection