@extends('layouts.app') @section('title', 'Customers') @section('content')
@forelse($customers as $customer) @empty @endforelse
Name Contact Email 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
Edit
@csrf @method('DELETE')
No customers found.
@if($customers->hasPages())
{{ $customers->links() }}
@endif @endsection