@extends(backpack_view('blank'))
@php
if (!isset($callforproposal)) {
$callforproposal = $entry;
}
@endphp
@section('header')
Appel à projet / {{ $callforproposal->title }}
Rechercher
@endsection
@section('content')
{{-- /.box --}}
@yield('tab_actions')
@if (backpack_auth()->user()->can("cfp.edit"))
-
Présentation
@endif
@if (backpack_auth()->user()->can("cfp.edit"))
@if ($callforproposal->applicationFormConfig)
-
Formulaire
@else
-
Formulaire
@endif
@endif
-
Candidatures
-
Processus de sélection
@if ($callforproposal->selections->count() > 0)
@foreach ($callforproposal->selections as $selection)
@php
$selectionRoute = route('proposalmanagement.callforproposal.selection.show', ['callforproposal_id' => $callforproposal->id, 'selection_id' => $selection->id]);
@endphp
-
{{ $selection->title }}
@endforeach
@endif
@yield('subcontent')
@endsection