@extends('layouts.dash') {!! $with_navbar=false !!} @section('title') Modification d'une transaction @stop @section('title_card',"Modification d'une transaction") @section('content')
@if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif @if (Session::has('message'))
{!! Session::get('message') !!}
@endif @if(Session::has('success'))
{!! Session::get('success') !!}
@endif
Transaction : {{ $grand_livre_ligne->transaction }}
{{ html()->modelForm($grand_livre_ligne, 'PUT', url('/grand_livre/' . $grand_livre_ligne->id))->open() }} @if(Session::has('transacstore')) {!! html()->hidden('transacstore', Session::get('transacstore'))->attributes(['id'=>'transacstore']) !!} @endif
{!! html()->label('DateCpt','date_doc') !!} {!! html()->text('created_at', $grand_livre_ligne->date_doc)->attributes(['style'=>'text-align:center','disabled','class' => 'form-control']) !!}
{!! html()->label('Journal','journal') !!} {!! html()->text('journal', $grand_livre_ligne->journal)->attributes(['disabled','style'=>'text-align:center','class' => 'form-control']) !!}
{!! html()->label('Référence','ref_doc') !!} {!! html()->text('ref_doc', $grand_livre_ligne->ref_doc)->attributes([(($mode=='show')?'disabled':''),'class' => 'form-control']) !!}
{!! html()->label('Date de création','created_at') !!} {!! html()->text('created_at', $grand_livre_ligne->DateCreation)->attributes(['disabled','style'=>'text-align:center','class' => 'form-control']) !!}
@include("comptabilite.grandlivre.content")
{!! html()->button('Enregistrer')->value('Enregistrer')->type('submit')->attributes(['id'=>'btn_enregistrer','class' => 'btn btn-primary']) !!} Retour
{{ html()->closeModelForm() }}
@endsection @section('scripts0') @endsection @section('scripts') @endsection