@if ($application->project_title)
@endif
@endif
@if ($application->film)
@php
$film = $application->film;
@endphp
@endif
{{ $application->project_title }}
@php
$applicant = $application->applicants->first();
$address = $applicant->address;
@endphp
@php
$coApplicants = $application->applicants->skip(1)->all();
@endphp
@if (count($coApplicants) > 0)
Nom : | {{ $applicant->fullname }} |
---|---|
Genre : | {{ $applicant->genre }} |
Né·e en : | {{ optional($applicant->birthdate)->format('Y') }} |
Adresse : |
@if ($address)
{!! nl2br(e($address->streetAddress)) !!}
{{ $address->postal_code }} {{ $address->locality }} @if ($address->country_id) {{ $address->country->name }} @endif @else @endif |
Téléphone : | {{ $applicant->phone_number }} |
Email : | {{ $applicant->email }} |
Site : | {{ $applicant->webSite->url }} |
Facebook : | {{ $applicant->facebook->url }} |
Instagram : | {{ $applicant->instagram->url }} |
X (Twitter) : | {{ $applicant->twitter->url }} |
Co-candidat(s)
@foreach ($coApplicants as $coApplicant)
@php
$applicant = $coApplicant;
$address = $applicant->address;
@endphp
@endforeach
Nom : | {{ $applicant->fullname }} |
---|---|
Genre : | {{ $applicant->genre }} |
Né·e en : | {{ optional($applicant->birthdate)->format('Y') }} |
Adresse : |
@if ($address)
{!! nl2br(e($address->streetAddress)) !!}
{{ $address->postal_code }} {{ $address->locality }} @if ($address->country_id) {{ $address->country->name }} @endif @else @endif |
Téléphone : | {{ $applicant->phone_number }} |
Email : | {{ $applicant->email }} |
Site : | {{ $applicant->webSite->url }} |
Facebook : | {{ $applicant->facebook->url }} |
Instagram : | {{ $applicant->instagram->url }} |
X (Twitter) : | {{ $applicant->twitter->url }} |
Fiche Film
Titre : | {{ optional($film)->fullTitle ?? '---' }} |
---|---|
Durée : | {{ $film->duration }} |
Genre : | @foreach ($film->genres as $genre) {{ $genre->name }} {!! !$loop->last ? ', ' : '' !!} @endforeach |
Format : | @forelse (optional($film)->shootingFormats as $shootingFormat) {{ $shootingFormat->name }}{{ !$loop->last ? ', ' : '' }} @empty - @endforelse |