@extends('layouts.dash') {!! $with_navbar=false !!} @section('title') Journal @stop @section('title_card',"Consultation d'une fiche Journal") @section('content')
@if (Session::has('message'))
{!! Session::get('message') !!}
@endif @if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif
{{ html()->modelForm($journal)->attributes(['journaux' => 'form', 'url' => '/journaux/'.$journal->id, 'class' => 'form-horizontal', 'method' => 'PUT'])->open() }} @include("comptabilite.journaux.content") {{ html()->closeModelForm() }}
@if(($user->hasRole("ADMINISTRATEUR") || $user->can("JOU_SUP")) ) {{ html()->form('DELETE', url('journaux/' . $journal->id))->open() }} {{ csrf_field() }} {{ html()->closeModelForm() }} @endif
@endsection