@extends('admin.layouts.master') @section('title', 'ECO') @section('content')

ECO Customer (Locality Wise) Total Amount : ₹ {{ number_format($totalAmount,2) }}

@forelse($customers as $row) @empty @endforelse
Name Mobile Total Amount Purchased
{{ $row->name }} {{ $row->phone }} ₹ {{ number_format($row->total_amount,2) }}
No records found
@endsection