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

Business Listing Details

Back

{{ $listing->title }}

  • Owner {{ $listing->owner->name ?? '-' }}
  • Category {{ $listing->category->name ?? '-' }}
  • Subcategory {{ $listing->subcategory->name ?? '-' }}
  • Status @if($listing->approval_status == 'approved') Approved @elseif($listing->approval_status == 'pending') Pending @else Rejected @endif
  • City {{ $listing->city->name ?? '-' }}
  • Country {{ $listing->country->name ?? '-' }}
  • No. Of Employees {{ $listing->no_of_employees ?? '-' }}
  • Lease Term {{ $listing->leaseTerm->name ?? '-' }}
  • Asking Price Currency {{ $listing->asking_price ?? '-' }}
  • Year Established {{ $listing->yearEstablishedData->year ?? '-' }}
  • Real Estate {{ $listing->realState->name ?? '-' }}
  • Trade License {{ $listing->tradeLicenseType->name ?? '-' }}
  • Annual Revenue Currency {{ $listing->annual_revenue ?? '-' }}
  • Total Net Assets Currency {{ $listing->total_net_asset ?? '-' }}
  • Business Hours {{ $listing->business_hours ?? '-' }}

Business Details

Reason For Sale: {{ $listing->reason_for_sale ?? '-' }}

Reason To Buy: {{ $listing->reason_to_buy ?? '-' }}

Size Of Premises: {{ $listing->size_of_premises ?? '-' }}

Annual Leasehold Rent:Currency {{ $listing->annual_leasehold_rent ?? '-' }}

Key Products: {{ $listing->key_products ?? '-' }}

Competition: {{ $listing->competition ?? '-' }}


Business Description
{!! $listing->description !!}

Images
@forelse($listing->images as $img) @php $imgUrl = get_uploaded_image_url($img->image, 'business_image_upload_dir'); @endphp
@empty
No images uploaded
@endforelse
@endsection