@extends('layouts.app') @section('title', $business->name.' — iiSHEEG') @section('content')

{{ $business->name }} @if ($business->featured) Featured @endif

{{ $business->category->name }}

{{ $business->city->name }}, {{ $business->city->country }}

About

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

Contact details

@if ($business->phone)

{{ $business->phone }}

@endif @if ($business->website)

{{ $business->website }}

@endif @if (! $business->phone && ! $business->website)

No contact details provided.

@endif
Back to listings
@endsection