Id Type Convention |
Nom Convention |
Duree Convention |
Date Convention |
Montant Convention |
Date Debut |
Date Fin |
Observation |
Action |
@foreach($conventions as $conventions)
{{ $conventions->id_type_convention }} |
{{ $conventions->nom_convention }} |
{{ $conventions->duree_convention }} |
{{ $conventions->date_convention }} |
{{ $conventions->montant_convention }} |
{{ $conventions->date_debut }} |
{{ $conventions->date_fin }} |
{{ $conventions->observation }} |
{!! Form::open(['route' => ['conventions.destroy', $conventions->id], 'method' => 'delete']) !!}
@can('convention.show')
@endcan
@can('convention.edit')
@endcan
@can('convention.delete'){!! Form::button(' ', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
@endcan
{!! Form::close() !!}
|
@endforeach
@if ($conventions->count() > 0)
@endif