@extends('layouts.app') @section('title', 'Manage Clients') @push('styles') @vite(['resources/css/crudTableStyler.css']) @endpush @section('content')
FIRST NAME | LAST NAME | COMPANY | CREATED | ACTION | |
---|---|---|---|---|---|
{{ $client->first_name }} | {{ $client->last_name }} | {{ $client->company }} | {{ $client->email }} | {{ $client->created_at->format('m/d/Y H:i') }} | |
No clients found. |
Could not update client: {{ $error }}
@endforeach