@extends('layouts.app') @section('content')

Business Details

Municipal Business Permit & Licensing System
Back to List Print {{-- Edit --}}
{{-- Identity + Ownership (same row as create) --}}
{{-- Identity --}}
Identity @php $status = strtoupper((string) $business->status); $badgeMap = [ 'ACTIVE' => 'bg-success', 'CLOSED' => 'bg-secondary', 'TRANSFERRED' => 'bg-warning', 'SUSPENDED' => 'bg-danger', ]; $statusClass = $badgeMap[$status] ?? 'bg-light text-dark'; @endphp {{ $business->status ?? '—' }}
Control Code
{{ $business->control_code ?? '—' }}
Organization Nature
{{ $business->organization_nature ?? '—' }}
Business Name
{{ $business->business_name ?? '—' }}
Trade Name
{{ $business->trade_name ?: '—' }}
{{-- Ownership --}}
Ownership
@if ($business->owner)
Owner
{{ trim($business->owner->first_name . ' ' . ($business->owner->middle_name ? $business->owner->middle_name . ' ' : '') . $business->owner->last_name) }}
Citizen ID
{{ $business->owner->citizen_id ?? '—' }}
TIN
{{ $business->tin ?: '—' }}
Mobile
{{ $business->owner->mobile_no ?: '—' }}
Email
{{ $business->owner->email ?: '—' }}
Owner Address
{{ $business->owner->address_line ?: '—' }}
{{ $business->owner->barangay ?: '' }} {{ $business->owner->barangay && ($business->owner->city_municipality || $business->owner->province || $business->owner->zipcode) ? ',' : '' }} {{ $business->owner->city_municipality ?: '' }} {{ $business->owner->city_municipality && ($business->owner->province || $business->owner->zipcode) ? ',' : '' }} {{ $business->owner->province ?: '' }} {{ $business->owner->zipcode ? ' ' . $business->owner->zipcode : '' }}
@else
No owner attached.
@endif
{{-- Organization & Registration --}}
Organization & Registration
Registration Authority
{{ $business->registration_authority ?: '—' }}
DTI/SEC/CDA No.
{{ $business->dti_sec_no ?: '—' }}
Registration Date
{{ optional($business->dti_sec_date)->format('Y-m-d') ?? '—' }}
Start of Operations
{{ optional($business->start_of_operations)->format('Y-m-d') ?? '—' }}
Status
{{ $business->status ?? '—' }}
{{-- Principal Place of Business --}}
Principal Place of Business
Address Line
{{ $business->address_line ?: '—' }}
Barangay
{{ $business->barangay ?: '—' }}
City / Municipality
{{ $business->city_municipality ?: '—' }}
Province
{{ $business->province ?: '—' }}
Zip Code
{{ $business->zipcode ?: '—' }}
{{-- Operations --}}
Operations
Operation Mode
{{ $business->operation_mode ?: '—' }}
Occupancy
{{ $business->occupancy ?: '—' }}
Floor Area (sqm)
{{ is_null($business->floor_area_sqm) ? '—' : number_format((float) $business->floor_area_sqm, 2) }}
Primary Line of Business
{{ $business->primary_line_of_business ?: '—' }}
PSIC Code
{{ $business->psic_code ?: '—' }}
{{-- Financials --}}
Financials
Capital Investment (₱)
{{ is_null($business->capital_investment) ? '—' : number_format((float) $business->capital_investment, 2) }}
@endsection