@section('title', 'Bekijk student')
@include('errors.messages')
Persoonsinformatie
{{ $studentInfo->first_name }} {{ $studentInfo->last_name }}
{{ $studentInfo->email }}
@if($studentInfo->company_id != 0)
{{ companyByID($studentInfo->company_id) }}
@endif
Diploma's
Datum |
Opleiding |
Diploma |
@foreach($diplomaInfo as $diploma)
{{ \Carbon\Carbon::parse($diploma->startdatum)->format('d-m-Y')}}
@if($diploma->einddatum != NULL)
tot {{ \Carbon\Carbon::parse($diploma->einddatum)->format('d-m-Y')}}
@endif
|
{{ opleidingsnaamByID($diploma->opleiding) }} |
downloaden
@if(can('view_crm'))
-
naar student mailen
@endif
|
@endforeach
Gevolgde opleidingsdelen
Datum |
Type opleiding |
# lesuren |
Aanwezig? |
@foreach($opleidingsInfo as $opleiding)
{{ $opleiding->datum }} |
{{ opleidingsnaamByID($opleiding->opleidingen_id) }} |
{{ $opleiding->lesuren }}
|
@if($opleiding->handtekening != NULL)
@endif
@if($opleiding->aanwezig == 0)
@endif
|
@endforeach