@extends('layouts.app') @section('content')
Customer list for {{!request('date') ? "today" : request('date')}}

For {{!request('date') ? "today's" : request('date')}} customer purchases, you have the option to access both the customer profile and their transaction history.

Register Customer

To register a new customer, click on the 'Add Customer' button.

@csrf
Select Date
@foreach($customer_data as $customer_data) @endforeach
Customer Phone Address /
Location
EnteredBy Last Purchase
Branch
Action
{{@strtoupper($customer_data->customer_name)}} {{$customer_data->customer_phone}} {{@strtoupper($customer_data->customer_address)}} {{@strtoupper($customer_data->customer_enteredby)}} {{@strtoupper($customer_data->customer_branch)}}
@if($customer_data->customer_name !== "WALK-IN CUSTOMER") @endif
@endsection