@extends('admin.layouts.master') @section('title', 'ECO') @section('content')
ECO Customer (Locality Wise)
Total Amount : ₹ {{ number_format($totalAmount,2) }}
Name
Mobile
Total Amount Purchased
@forelse($customers as $row)
{{ $row->name }}
{{ $row->phone }}
₹ {{ number_format($row->total_amount,2) }}
@empty
No records found
@endforelse
@endsection