@extends('layouts.app')
@section('content')
Profil de membre : {{$tiers->id_tiers}}
@php
$i = 0;
@endphp
|
Date |
Profil |
Motif |
|
@foreach ($profils as $profil)
@php
$i++;
@endphp
{{$i}} |
{{ (new DateTime($profil->date_profil))->format(Config('myahs.date_format')) }} |
{{ $profil->profil }} |
{{ $profil->motif }} |
|
@endforeach
@if($i == 0)
La liste est vide
|
@endif
@endsection
@section('script')
@endsection