@extends('layouts.app') @section('title', 'Applications › Endorsements') @section('content')

Endorsements (Health, Zoning, BFP, etc.)

Static demo list • shows inter-agency endorsements routing
Back to Applications
@php $rows = [ [ 'track' => 'TRK-2025-0915-001', 'biz' => 'Sunrise Mini Mart', 'owner' => 'Juan Dela Cruz', 'apptype' => 'Amendment', 'endorse' => 'Zoning', 'office' => 'CPDO - Zoning', 'inspector' => 'Engr. P. Cruz', 'date' => '2025-09-15', 'status' => 'Approved', ], [ 'track' => 'TRK-2025-0917-004', 'biz' => 'Blue Ocean Eatery', 'owner' => 'Maria Santos', 'apptype' => 'New', 'endorse' => 'Sanitary/Health', 'office' => 'City Health Office', 'inspector' => 'Nurse A. Santos', 'date' => '2025-09-17', 'status' => 'For Inspection', ], [ 'track' => 'TRK-2025-0920-002', 'biz' => 'TechCraft Solutions', 'owner' => 'Pedro Reyes', 'apptype' => 'Renewal', 'endorse' => 'Fire Safety (BFP)', 'office' => 'BFP - Fire Safety', 'inspector' => 'SFO2 R. Dizon', 'date' => '2025-09-20', 'status' => 'Pending', ], [ 'track' => 'TRK-2025-0921-003', 'biz' => 'Happy Paws Grooming', 'owner' => 'Ana Dizon', 'apptype' => 'New', 'endorse' => 'Environmental', 'office' => 'CENRO', 'inspector' => 'Env. Officer L. Lim', 'date' => '2025-09-21', 'status' => 'Complied', ], [ 'track' => 'TRK-2025-1001-005', 'biz' => 'Golden Harvest Trading', 'owner' => 'Jose Tan', 'apptype' => 'Renewal', 'endorse' => 'Engineering', 'office' => 'CEO - Engineering', 'inspector' => 'Engr. M. Go', 'date' => '2025-10-01', 'status' => 'Approved', ], [ 'track' => 'TRK-2025-1007-007', 'biz' => 'Lotus Spa & Wellness', 'owner' => 'Liza Lim', 'apptype' => 'Amendment', 'endorse' => 'Fire Safety (BFP)', 'office' => 'BFP - Fire Safety', 'inspector' => 'FO1 J. Uy', 'date' => '2025-10-07', 'status' => 'Disapproved', ], ]; @endphp @foreach ($rows as $r) @endforeach
Tracking No. Business Name Owner Application Endorsement Assigned Office Inspector Date Requested Status Actions
{{ $r['track'] }} {{ $r['biz'] }} {{ $r['owner'] }} {{ $r['apptype'] }} {{ $r['endorse'] }} {{ $r['office'] }} {{ $r['inspector'] }} {{ \Carbon\Carbon::parse($r['date'])->format('M d, Y') }} @php $statusClass = [ 'Pending' => 'warning', 'For Inspection' => 'primary', 'Complied' => 'info', 'Approved' => 'success', 'Disapproved' => 'danger', ][$r['status']] ?? 'secondary'; @endphp {{ $r['status'] }}
@endsection @push('scripts') @endpush