@include('layouts.includes.message')
@if(isset($customer) && !empty($customer))
|
{{ HTML::image($customer->photo, $customer->first_name, [
'class' => 'img-responsive img-thumbnail',
'width' => "150px"
]) }}
|
| {{ Trans('customers.name') }} |
{{ $customer->first_name }} {{ $customer->last_name }} |
| {{ Trans('customers.sex') }} |
{{ trans('customers.gender.'. $customer->sex) }}
|
@if (!empty($customer->dob))
| {{ Trans('customers.dob') }} |
{{ $customer->displayDob() }} |
@endif
| {{ Trans('customers.age') }} |
{{ $customer->age }} |
| {{ Trans('customers.tel') }} |
{{ $customer->tel }} |
| {{ Trans('customers.id_card') }} |
{{ $customer->id_card }} |
| {{ Trans('customers.note') }} |
{{ $customer->note }} |
| {{ Trans('customers.address') }} |
{{ $customer->address }} |
@endif
@endsection
@section('addJs')
@if(count($invoices)>0)
@endif
@endsection