@lang('customer.customers_list')

@include('flash::message') @isset($customers) @foreach($customers as $customer) @endforeach @endisset
{{Lang::get('customer.customer_name')}} {{Lang::get('customer.mobile_number')}} {{Lang::get('customer.gender')}} {{Lang::get('customer.date_of_birth')}} {{Lang::get('customer.action')}}
{!! 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
@isset($customers)
{{ $customers->links() }}
@endisset