@extends('dashboard')
@section('content')
Client
|
Montant
|
Mois
|
Date
|
Action
|
@foreach($penalites as $p)
{{$p->prenom .' '. $p->nom}}
|
{{ $p->montant }}
|
{{ $p->mois }}
|
{{ $p->updated_at }}
|
@if(Auth::user()->type == 'Super Administrateur')
@endif
|
@endforeach
@endsection