@extends('admin.layouts.default') @section('header_styles') @stop @section('content')

Restaurant/Owner Details

Name {{ ucfirst($restaurant->first_name) }} {{ ucfirst($restaurant->last_name) }}
Username {{ $restaurant->user_name }}
Title {{ $restaurant->title }}
Email {{ $restaurant->email }}
Avatar @if($restaurant->avatar) User profile picture @else Default profile picture @endif
Phone {{ $restaurant->phone }}
Phone Verified @if($restaurant->phone_verified == '0') {{ 'Unverified' }} @else {{ 'Verified' }} @endif
Add Restaurant
@if($restaurant->tax_rate) @endif
Logo @if($restaurant->logo) Logo @else Default picture @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 }}
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
@stop @section('footer_scripts') @stop