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

Client Management

@forelse ($allClients as $client) @empty @endforelse
Name Email Phone Store Country Created Date Company Note
{{ $client['Name'] ?? 'N/A' }} {{ $client['Email'] ?? 'N/A' }} {{ $client['Phone'] ?? 'N/A' }} {{ $client['Store'] ?? 'N/A' }} {{ $client['Country'] ?? 'N/A' }} {{ isset($client['Created']) ? \Carbon\Carbon::parse($client['Created'])->format('d-m-Y H:i A') : 'N/A' }} {{ $client['Company'] ?? 'N/A' }} notes
No clients found
@endsection