@extends('layouts.dash')
{!! $with_navbar=false !!}
@section('title') Transaction @stop
@section('title_card',"Consulter une Transaction")
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
@if (Session::has('message'))
{!! Session::get('message') !!}
@endif
{{ html()->modelForm($grand_livre_ligne)->attributes(['grand_livre_ligne' => 'form', 'url' => '/grand_livre/'.$grand_livre_ligne->id, 'class' => 'form-horizontal', 'method' => 'PUT'])->open() }}
@include("comptabilite.grandlivre.content")
{{ html()->closeModelForm() }}
@endsection