@extends('layouts.app') @section('title','Customers') @section('content')
@if(request('search'))Clear@endif
@forelse($customers as $c) @empty @endforelse
CodeNameContactPhoneCredit DaysOutstandingStatusActions
{{ $c->code }} {{ $c->name }} {{ $c->contact_person ?? '—' }} {{ $c->phone ?? '—' }} {{ $c->credit_days }} days ৳{{ number_format($c->getOutstandingBalance(),2) }} {{ $c->is_active?'Active':'Inactive' }}
No customers found. Add your first customer
@if($customers->hasPages()) @endif
@endsection