@extends('layouts.app') @section('title', 'Customers') @section('content')
Manage your customer directory
| Name | Contact | Credit Limit | Outstanding Balance | Status | Actions | |
|---|---|---|---|---|---|---|
| {{ $customer->name }} | {{ $customer->contact_person }} | {{ $customer->email }} | {{ number_format($customer->credit_limit, 2) }} | {{ number_format($customer->outstanding_balance ?? 0, 2) }} | @if($customer->is_active) Active @else Inactive @endif | |
| No customers found. | ||||||