{{ $loop->iteration }} |
{{ $client->name }} |
@if(isset($client->surname))
{{ $client->surname }}
@else
/
@endif
|
{{ $client->email }}
|
+3897{{ $client->phone }}
|
@if(isset($client->dob))
{{ \Carbon\Carbon::createFromFormat('Y-m-d', $client->dob)->format('d/m/Y') }}
@else
/
@endif
|
@if(isset($client->id_card_number))
{{ $client->id_card_number }}
@else
/
@endif
|
@if(isset($client->embg))
{{ $client->embg }}
@else
/
@endif
|
@if(isset($client->address))
{{ $client->address }}
@else
/
@endif
|
@if(isset($client->bank_account))
{{ $client->bank_account }}
@else
/
@endif
|
@if(isset($client->id_card_picture_front))
@else
/
@endif
@if(isset($client->id_card_picture_back))
@else
/
@endif
|
@if($client->approved == 0 && $client->completed_profile == 0)
Некомплетиран
@endif
@if($client->approved == 0 && $client->completed_profile == 1)
Oдобри
@endif
@if($client->approved == 1)
Одобрен
@endif
|
|
@endforeach