@include('flash::message')
{{Lang::get('customer.customer_name')}} |
{{Lang::get('customer.mobile_number')}} |
{{Lang::get('customer.gender')}} |
{{Lang::get('customer.date_of_birth')}} |
{{Lang::get('customer.action')}} |
@isset($customers)
@foreach($customers as $customer)
{!! strtoupper($customer->full_name) !!}
|
{!! $customer->mobile_1 !!}
{{ isset($customer->mobile_2) ? ','. $customer->mobile_2 : ''}}
|
{!! $customer->gender !!} |
@if($customer->date_of_birth){{ Carbon\Carbon::parse($customer->date_of_birth)->format('d-m-Y') }}@endif |
|
@endforeach
@endisset
@isset($customers)
{{ $customers->links() }}
@endisset