{{ $loop->iteration }} |
{{ $client->name }} |
{{ $client->surname }} |
{{ $client->email }} |
{{ \Carbon\Carbon::createFromFormat('Y-m-d', $client->dob)->format('d/m/Y') }}
|
@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