| 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 }} |
| Tax Rate |
{{ $restaurant->tax_rate }} |
| Tax Included |
{{ $restaurant->tax_included }} |
| Website |
{{ $restaurant->website }} |
| Support Email |
{{ $restaurant->support_email }} |
| Support Mobile |
{{ $restaurant->support_mobile }} |
| Online Notification Email |
{{ $restaurant->online_notification_email }} |
| Offline Notification Email |
{{ $restaurant->offline_notification_email }} |
| Feedback Status |
@if($restaurant->feedback_status == 1)
{{ 'On' }}
@else
{{ 'Off' }}
@endif
|
| Reservation Status |
@if($restaurant->reservation_status == 1)
{{ 'On' }}
@else
{{ 'Off' }}
@endif
|
| Status |
@if($restaurant->status == '1')
{{ 'Active' }}
@else
{{ 'Inactive' }}
@endif
|