{{-- resources/views/reports/masterlist.blade.php --}} @extends('layouts.app') @section('title', 'Reports · Master List') @section('content')
Business Master List
Registered Businesses
{{-- Static sample data --}} @php $biz = [ [ 1, 'BIZ-2025-0001', 'ABC Trading', 'Ana Cruz', 'Poblacion', 'Retail / Sari-sari', 'Active', '0917 123 4567', ], [ 2, 'BIZ-2025-0002', 'XYZ Manufacturing', 'Pedro Reyes', 'San Isidro', 'Manufacturing', 'Active', '0918 555 8899', ], [ 3, 'BIZ-2025-0003', 'Juan’s Eatery', 'Juan Dela Cruz', 'San Roque', 'Food Service', 'For Renewal', '', ], [ 4, 'BIZ-2024-0110', 'Santos Pharmacy', 'Maria Santos', 'Poblacion', 'Pharmacy', 'Expired', '0906 111 2222', ], ]; @endphp @foreach ($biz as $b) @endforeach
# Business ID Business Name Owner Barangay Line of Business Status Contact
{{ $b[0] }} {{ $b[1] }} {{ $b[2] }} {{ $b[3] }} {{ $b[4] }} {{ $b[5] }} {{ $b[6] }} {{ $b[7] ?: '—' }}
@endsection @push('scripts') @endpush