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

{{ __('Customer Report') }}

@php $total = 0; @endphp @forelse ($users as $id => $user) @php $total = $user->total_paid + $user->total_pending; @endphp @empty @endforelse
{{ __('#') }} {{ __('Company Name') }} {{ __('Customer Name') }} {{ __('Invoices Amount') }} {{ __('Paid') }} {{ __('Pending') }}
{{ ++$id }} {{ $user->company }} {{ $user->first_name }} {{ $user->last_name }} {{ $total}} {{$user->total_paid }} {{ $user->total_pending }}
No products available.
@endsection @section('js') @endsection