@extends('layouts.app') @section('title', 'Customers') @section('page-title', 'Customer Management') @section('content')

All Customers

Manage customer records and information

New Customer
@foreach($customers as $customer) @endforeach
Name Email Phone Total Due Company City Status Actions
{{ $customer->name }} {{ $customer->email }} {{ $customer->phone }} {{ number_format($customer->bookings_sum_due_payment ?? 0, 2) }} {{ $customer->company_name ?? 'N/A' }} {{ $customer->city }} {{ $customer->is_active ? 'Active' : 'Inactive' }}
View Edit
@csrf @method('DELETE')
{{ $customers->links() }}
@endsection