@extends('layouts.app') @section('content')

Modifier la réalisation

@csrf @method('PUT') {{-- Nom de la réalisation --}}
{{-- Description --}}
{{-- Année --}}
{{-- Thème --}}
{{-- Lien --}}
{{-- Langages --}}
@foreach($realisation->langages as $langage)
@endforeach
{{-- Compétences --}}
@foreach($realisation->competences as $competence)
@endforeach
{{-- Types --}}
@foreach($realisation->types as $type)
@endforeach
@foreach($realisation->apprentissages as $apprentissage)
@endforeach
{{-- PDF --}}
@if($realisation->pdfs && $realisation->pdfs->count() > 0)

Télécharger le PDF

@else

Aucun fichier PDF pour cette réalisation.

@endif
{{-- Photos --}}
@foreach($realisation->photos as $photo)
Photo
@endforeach
{{-- Pro ou académique --}}
{{-- Bouton de soumission --}}
@endsection