| Logo |
@if($restaurant->logo)
@else
@endif
|
| Name |
{{ $restaurant->name }} |
| City |
{{ $restaurant->city }} |
| Country |
{{ $restaurant->country }} |
| Email |
{{ $restaurant->email }} |
| Phone |
{{ $restaurant->phone }} |
| Address |
{{ $restaurant->address }} |
| State |
{{ $restaurant->state }} |
| Postal Code |
{{ $restaurant->postal_code }} |
| Longitude |
{{ $restaurant->longitude }} |
| Latitude |
{{ $restaurant->latitude }} |
| Timezone |
{{ $restaurant->timezone }} |
@if($restaurant->tax_rate)
| Tax Rate |
{{ $restaurant->tax_rate }} |
@endif
| Website |
{{ $restaurant->website }} |
| Support Email |
{{ $restaurant->support_email }} |
| Support Mobile |
{{ $restaurant->support_mobile }} |
| Online Notification Email |
{{ $restaurant->online_notification_email }} |
| Feedback Status |
@if($restaurant->feedback_status == '1')
{{ 'Active' }}
@else
{{ 'Inactive' }}
@endif
|
| Reservation Status |
@if($restaurant->reservation_status == '1')
{{ 'Active' }}
@else
{{ 'Inactive' }}
@endif
|
| Status |
@if($restaurant->status == '1')
{{ 'Active' }}
@else
{{ 'Inactive' }}
@endif
|