@extends('layouts.dash') @section('title') Types de Mandat @stop @section('content') @if (Session::has('message'))
{!! Session::get('message') !!}
@endif @if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif @if (Session::has('success'))
{!! \Session::get('success') !!}
@endif

Secteurs

@if($user->can("TYPEMANDAT_AJO") || $user->HasRole("ADMINISTRATEUR")) @endif @foreach ($mandats_types as $mandat_type) @endforeach
Id Type Libellé CompteDébit CompteAuxDébit LibelleDébit CompteCrédit CompteAuxCrédit LibelleCrédit
{!! $mandat_type->IdPAD !!} {!! $mandat_type->type !!} {!! $mandat_type->libelle !!} {!! $mandat_type->compte_debit !!} {!! $mandat_type->compte_aux_debit !!} {!! $mandat_type->debit_libelle !!} {!! $mandat_type->compte_credit !!} {!! $mandat_type->compte_aux_credit !!} {!! $mandat_type->credit_libelle !!}
@endsection @section('scripts') @include("forms.scripts_datatable_btn") @endsection