@extends('layouts.master_panel')
@section('title') Préparation à l'exam @stop
@section('CSS')
@stop
@section('JS')
@stop
@section('content')
@if(count($devoirs) < 1)
@endif
@foreach($devoirs as $devoir)
@if(!empty($devoir->preparation_exam))
{{ $devoir->subject->name }}
{{ $devoir->teacher->last_name . ' ' . $devoir->teacher->first_name }}
@if(!empty($devoir->file_join))
@endif
@endif
@endforeach
@stop