@extends('admin.layouts.app') @section('content')
@if(session('success')) @endif
@foreach($customers as $customer) @endforeach
ID Name Email Phone Address Joined Actions
#{{ $customer->id }}
{{ $customer->name }}
{{ $customer->email }}
{{ $customer->phone ?? 'N/A' }}
{{ $customer->address ?? 'N/A' }}
{{ $customer->created_at->format('M d, Y') }}
Edit
@csrf @method('DELETE')
{{ $customers->links() }}
@endsection