@extends('layouts.modern') @section('page-title', 'Business Details') @section('breadcrumb') @endsection @section('action-buttons') Edit Business Back to List @endsection @section('content')
Business Information

{{ $business->company_name }}

{{ $business->contact_name ?: 'Not specified' }}

{{ $business->contact_number ?: 'Not specified' }}

@if($business->is_active) Active @else Inactive @endif

{{ $business->company_address ?: 'Not specified' }}

{{ $business->city ?: 'Not specified' }}

{{ $business->state ?: 'Not specified' }}

{{ $business->country ?: 'Not specified' }}

Actions
Edit Business
System Information
Business ID:
{{ $business->id }}
Created:
{{ $business->created_at->format('M d, Y H:i') }}
Last Updated:
{{ $business->updated_at->format('M d, Y H:i') }}
@endsection