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

Business Application Amendments

Static demo list • replace with real data when backend is ready
Back to Applications
@php $rows = [ [ 'app_no' => '2025-000123', 'biz_name' => 'Sunrise Mini Mart', 'owner' => 'Juan Dela Cruz', 'type' => 'Change of Business Name', 'old' => 'Sunrise Sari-Sari Store', 'new' => 'Sunrise Mini Mart', 'date' => '2025-09-12', 'status' => 'Approved', ], [ 'app_no' => '2025-000124', 'biz_name' => 'Blue Ocean Eatery', 'owner' => 'Maria Santos', 'type' => 'Add Line of Business', 'old' => 'Restaurant', 'new' => 'Restaurant; Catering', 'date' => '2025-09-14', 'status' => 'For Assessment', ], [ 'app_no' => '2025-000125', 'biz_name' => 'TechCraft Solutions', 'owner' => 'Pedro Reyes', 'type' => 'Change of Address', 'old' => 'Purok 2, Brgy. Central', 'new' => 'Lot 5, Phase 1, Brgy. North', 'date' => '2025-09-20', 'status' => 'Pending', ], [ 'app_no' => '2025-000126', 'biz_name' => 'Happy Paws Grooming', 'owner' => 'Ana Dizon', 'type' => 'Drop Line of Business', 'old' => 'Grooming; Pet Supplies', 'new' => 'Grooming', 'date' => '2025-09-21', 'status' => 'Returned', ], [ 'app_no' => '2025-000127', 'biz_name' => 'Golden Harvest Trading', 'owner' => 'Jose Tan', 'type' => 'Change in Capital', 'old' => '₱500,000', 'new' => '₱1,200,000', 'date' => '2025-10-01', 'status' => 'Approved', ], [ 'app_no' => '2025-000128', 'biz_name' => 'Lotus Spa & Wellness', 'owner' => 'Liza Lim', 'type' => 'Change in Ownership', 'old' => 'Sole Proprietorship', 'new' => 'Partnership', 'date' => '2025-10-05', 'status' => 'Pending', ], ]; @endphp @foreach ($rows as $r) @endforeach
App No. Business Name Owner Amendment Type Old Value New Value Date Filed Status Actions
{{ $r['app_no'] }} {{ $r['biz_name'] }} {{ $r['owner'] }} {{ $r['type'] }} {{ $r['old'] }} {{ $r['new'] }} {{ \Carbon\Carbon::parse($r['date'])->format('M d, Y') }} @php $statusClass = [ 'Pending' => 'warning', 'For Assessment' => 'primary', 'Approved' => 'success', 'Returned' => 'danger', ][$r['status']] ?? 'secondary'; @endphp {{ $r['status'] }}
@endsection @push('scripts') @endpush