@extends('layouts.admin') @section('content')

Clients

@if(!$clients->isEmpty())

@foreach($clients as $client) @endforeach
First Name Last Name Email Tel Registered on Actions
{{ $client->first_name }} {{ $client->last_name }} {{ $client->email }} {{ $client->tel }} {{ date('Y-m-d', strtotime($client->created_at)) }}
@csrf @method('DELETE')
First Name Last Name Email Tel Registered on Actions
@else Create @endif
@endsection @section('js') @endsection()