@foreach($customers as $customer) @endforeach
{{Lang::get('customer.customer_name')}} {{Lang::get('customer.mobile_number')}} {{Lang::get('customer.gender')}} {{Lang::get('customer.date_of_birth')}} {{Lang::get('customer.action')}}
{!! $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 @if(Sentinel::inRole('admin')) @endif
@include('admin.customers.customer-popup') @include('admin.properties.property-popup') @section('footer_scripts') @stop