@extends('layouts.dash') @section('title') Diplômes @stop @section('title_card',"Diplômes") @section('subtitle_card',"Liste") @section('content') @if (Session::has('message'))
| Nom | Nom court | Filiere |
@if($user->can("ajouter diplomes") || $user->hasRole("ADMINISTRATEUR"))
Nouveau diplome @endif |
|---|---|---|---|
| {!! $diplome->nom !!} | {!! $diplome->nom_court !!} | {!! $diplome->nom_filiere !!} | @if($diplome->CanDelete) {{ html()->form('DELETE', url('/diplomes/'. $diplome->id))->open() }} {{ csrf_field() }} @endif @if($diplome->CanDelete) {{ html()->form()->close() }} @endif |