@lang('modules.restaurant.restaurantDetails')

{{ $restaurant->name }}

{{ $restaurant->name }} @if ($restaurant->license_type != 'paid') FREE @else PAID @endif {{ __('Impersonate') }}

{!! nl2br($restaurant->address) !!}
@lang('app.id')
  • {{ $restaurant->id }}
@lang('modules.restaurant.phone')
  • {{ $restaurant->phone_number }}
@lang('modules.restaurant.email')
  • {{ $restaurant->email }}
@lang('modules.settings.restaurantTimezone')
  • {{ $restaurant->timezone }}
@lang('modules.settings.restaurantCountry')
  • {{ $restaurant->country->countries_name }}
@lang('modules.settings.restaurantCurrency')
  • {{ $restaurant?->currency?->currency_name }} ({{ $restaurant?->currency?->currency_code }})
@lang('app.dateTime')
  • {{ $restaurant->created_at->timezone(global_setting()->timezone ?? 'Asia/Kolkata')->format('D, d M Y, h:i A') }}
@if ($restaurantAdmin)
@lang('modules.restaurant.firstAdmin')
Bonnie image
{{ $restaurantAdmin->name }}
{{ $restaurantAdmin->email }}
@lang('modules.restaurant.changePassword')
@else
No Admin Found
@endif

@lang('modules.settings.branches')

@foreach ($restaurant->branches as $item) @endforeach
# @lang('modules.settings.branchName') @lang('modules.settings.branchAddress') @lang('modules.order.totalOrder')
{{ $loop->index+1 }} {{ $item->name }} {{ $item->address }} {{ $item->orders->count() }}
{{-- PAYMENTS--}}

@lang('menu.payments')

@foreach ($restaurant->restaurantPayment as $payment) @endforeach
# @lang('modules.order.amount') @lang('app.dateTime') @lang('app.paidVia')
{{ $loop->index+1 }} ${{ $payment->amount }} {{ $payment->payment_date_time->timezone(global_setting()->timezone)->format('D, d M Y, h:i A')}} @if(!is_null($payment->stripe_payment_intent)) Stripe @elseif(!is_null($payment->razorpay_payment_id)) Razorpay @else - @endif
@lang('modules.restaurant.changePassword')
@csrf
@lang('app.save')
@lang('app.cancel')