{{ $user->id }}
|
{{ $user->user_profile->name }} |
Professores
|
@isset($user->user_credit->credit)
{{ $user->user_credit->credit }}
@endisset
|
@isset($user->user_credit->expiration_date)
{{ date('d-m-Y', strtotime($user->user_credit->expiration_date)) }}
@endisset
|
@if ($user->status === 'approved')
Aprovado |
@endif
@if ($user->status === 'rejected')
Rejeitado |
@endif
@if ($user->status === 'pending')
Pendente |
@endif
{{ date('d-m-Y', strtotime($user->user_profile->birth_date)) }}
|
@endforeach