@extends('layout.app') @section('content')
Total Row: {{ $dueOtc->count() }}
@php $total = 0; @endphp @foreach ($dueOtc as $r) @endforeach
ID Clients Name Area Contact No OTC Due OTC
{{ $r->id }} {{ $r->clients_name }} {{ $r->area }} {{ $r->contact_no }} {{ $r->otc }} @php $total += $r->otc_due @endphp {{ $r->otc_due }}
Total: {{ number_format($total, 2, '.', '') }}
@endsection