@extends('layouts.admin') @section('title', 'Business Details') @section('content')

Business Details

View complete business information

Edit Business Back to List
Business Overview
{{ ucfirst($business->type) }}
@if($business->logo) {{ $business->name }} @else
@endif
{{ $business->name }}

Business ID: #{{ $business->id }}

{{ ucfirst($business->type) }}

@if($business->getBizspotCategoryPath()) {{ $business->getBizspotCategoryPath() }} @else Not assigned @endif

@if($business->user) {{ $business->user->name }} @else No owner assigned @endif

Active

{{ $business->description ?? 'No description provided.' }}

Contact Information
@if($business->website) @endif
Location Information

{{ $business->address ?? 'No address provided.' }}

@if($business->latitude && $business->longitude)

{{ $business->latitude }}

{{ $business->longitude }}

@endif
Quick Stats
Created
{{ $business->created_at->format('M d, Y') }}
Last Updated
{{ $business->updated_at->format('M d, Y') }}
@if($business->user)
Owner Role
{{ ucfirst($business->user->role) }}
@endif
Quick Actions
Edit Business @if($business->website) Visit Website @endif @if($business->user) Send Email @endif @if($business->latitude && $business->longitude) View Location @endif

@csrf @method('DELETE')
@endsection @section('scripts') @endsection