@extends('layouts.master')
@section('css')
@endsection
@section('page-header')
@endsection
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
Numero Cheque |
Beneficiaire |
Montant |
Banque |
Date Paiement |
Actions |
@foreach($cheques as $cheque)
{{ $cheque->num_cheque }} |
{{ $cheque->beneficiaire }} |
{{ $cheque->montant }} |
{{ $cheque->banque }} |
{{ $cheque->date_paiment }} |
|
@endforeach
@endsection
@section('js')
@endsection