@extends('layouts.app') @section('title', 'Customers') @section('page-title', 'Customers') @section('content')
Manage your customer database
Add Customer| Customer | Type / GSTIN | City / State | Outstanding (₹) | Actions |
|---|---|---|---|---|
|
{{ $customer->name }}
{{ $customer->phone }} {{ $customer->email ? '· '.$customer->email : '' }}
|
{{ strtoupper($customer->customer_type) }}
@if($customer->gstin)
{{ $customer->gstin }}
@endif
|
{{ $customer->billing_city }}{{ $customer->billing_state ? ', '.$customer->billing_state : '' }} | ₹{{ number_format($customer->total_outstanding, 2) }} | |
|
No customers yet Add your first customer → |
||||