New Docs
@if(session()->has('success'))
{{ session()->get('success') }}
@endif
@if(session()->has('data'))
{{ session()->get('data') }}
@endif
@if(count($errors) > 0)
@foreach($errors->all() as $message)
{{ $message }}
@endforeach
@endif
{{--
Structure |
Telephone |
Actions |
@foreach($clients as $per)
{{$per->structure}} |
{{$per->telephone}} |
plus |
@endforeach
--}}
@endsection