@extends('layouts.app') @section('title', 'Customers') @section('page-title', 'Customer Management') @section('content')
Manage customer records and information
| Name | Phone | Total Due | Company | City | Status | Actions | ||
|---|---|---|---|---|---|---|---|---|
| id }})" :checked="selectedCustomers.includes({{ $customer->id }})" class="w-4 h-4 text-indigo-600 border-gray-300 rounded focus:ring-indigo-500"> | {{ $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' }} |