@extends('layouts.app') @section('nav', 'Business Records') @section('title', 'Business Records') @section('content')

Businesses

{{-- Card Wrapper --}}
Manage, filter, export
{{-- Flash --}} @if (session('success'))
{{ session('success') }}
@endif {{-- (Removed the old search row here; it now lives in the header) --}}
@forelse ($businesses as $biz) @php $status = strtoupper((string) $biz->status); $statusClass = match ($status) { 'ACTIVE' => 'bg-success', 'CLOSED', 'RETIRED' => 'bg-secondary', 'TRANSFERRED' => 'bg-warning', default => 'bg-light text-dark', }; $filedDate = optional($biz->created_at); @endphp @empty @endforelse
Control Code Business Name Trade Name Organization Address Location Status Filed
No records found.
@endsection @push('styles') @endpush @push('scripts') @endpush