@extends('backend.layouts.app') @section('title', __('Dashboard')) @php $office_id = []; if(request('office_id')){ $office_id = request('office_id'); $office_id = array_flip($office_id); } @endphp @section('content')
Monthly Report
    @foreach(dropPoints() as $dp)
  • id, $office_id))? "checked" : "" }}>
  • @endforeach

Parcel Report For {{ $year }}

@foreach($table as $key => $i) @endforeach
Month In Process Pending Completed Return Total
{{ $key }} {{ $i['process'] }} {{ $i['pending'] }} {{ $i['completed'] }} {{ $i['return'] }} {{ $i['total'] }}
@endsection @push('after-scripts') {{-- --}} @endpush