@extends('layouts.dash') @section('title') Plan @stop @section('content')

Consultation d'un Compte

{{ html()->modelForm($plan)->open() }}
N°Compte
{!! html()->label( 'Nom','nomcpt') !!} {!! html()->text('nomcpt', null)->attributes(['readonly', 'class' => 'form-control']) !!}
{!! html()->label( 'Compte','categ') !!} {!! html()->text('categ', $plan->CategLibelle)->attributes(['readonly','class' => 'form-control']) !!}
{!! html()->label( 'Catég. Bilan','categ_bilan') !!} {!! html()->text('categ_bilan', $plan->CategBilanLibelle)->attributes(['readonly','class' => 'form-control']) !!}
{!! html()->label( 'Catég. Compte de Résultat','categ_cr') !!} {!! html()->text('categ_cr', $plan->CategCRLibelle)->attributes(['readonly','class' => 'form-control']) !!}
{!! html()->label('Compte Amortisssement','amort') !!} {!! html()->select('amort',[" "=>"Aucun"]+$comptes,null)->attributes(['class' => 'selectpicker','data-width' => "100%",'disabled']) !!}
Budget
{!! html()->text('budget', null)->attributes(['readonly', 'class' => 'text-right form-control'])!!}
Débit (Calculé)
{!! html()->text('debit_calc', $plan->getDebitCalc())->attributes(['readonly', 'class' => 'text-right form-control'])!!}
Crédit (Calculé)
{!! html()->text('credit_calc', $plan->getCreditCalc())->attributes(['readonly', 'class' => 'text-right form-control'])!!}
{{ html()->form()->close() }}
@endsection @section('title') Consultation d'un Compte @stop @section('content')