@extends('Admin.layout.app') @section('title','Customer List') @section('page-title','Customer List') @section('content')
Customer List
@foreach($customers as $customer) @endforeach
Customer Phone Address Previous Balance Joined Action
{{ $customer->name }}
{{ $customer->urdu_name }}
{{ $customer->phone ?? '-' }}
{{ $customer->phone2 ?? '-' }}
{{ $customer->address ?? '-' }}
{{ $customer->urdu_address ?? '-' }}
Rs {{ number_format($customer->opening_balance ?? '0.00',2) }} {{ $customer->created_at->format('d M Y') }} update Bills
{{ $customers->links() }}
@endsection