@extends('layouts.backend') @section('mainContentArea')
@foreach($customer as $c) @endforeach
S.No Name CustomerID Mobile Credit Debit
{{ $count }} {{ !empty($c->customerInfo) ? $c->customerInfo["firstname"] : ''}} {{ !empty($c->customerInfo) ? $c->customerInfo['customer_id'] : '' }} {{ !empty($c->customerInfo) ? $c->customerInfo['telephone'] : ''}} {{ $c->total_credit }} {{ $c->total_debit }}
@endsection @section('extraJs') @endsection