@extends('layouts.master') @section('css') @endsection @section('page-header') @endsection @section('content')

Liste des cheques

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @foreach($cheques as $cheque) @endforeach
Numero Cheque Beneficiaire Montant Banque Date Paiement Actions
{{ $cheque->num_cheque }} {{ $cheque->beneficiaire }} {{ $cheque->montant }} {{ $cheque->banque }} {{ $cheque->date_paiment }}
@csrf @method('DELETE')
@endsection @section('js') @endsection