@extends('layouts.app') @section('title', 'Applications › Amendments') @section('content')
| 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'] }} |
|