@extends('admin.layouts.master') @section('headerFiles') @endsection @section('content')
@if($restaurent->cover_image !=null) @endif
@if($customer->image!=null) @endif
{{$customer->name}}

{{$customer->email}}
{{$customer->dial_code.$customer->phone_number}}
{{$customer->location}}
View Location

Brand name {{$restaurent->brand_name}}

Food Preperation Time {{$restaurent->preparation_unit.' '.$restaurent->preparation_time}}

@php $config = \App\Models\Config::get(['tax_rate','delivery_fee','admin_commission'])->first(); @endphp

Commission (%) @if($customer->commission>0){{$customer->commission}}@else{{$config->admin_commission}}@endif

Delivery Fee @if($customer->delivery_fee > 0 ){{$customer->delivery_fee}}@else{{$config->delivery_fee}} @endif

Start Time {{date('h:i A', strtotime($customer->start_time))}}

End Time {{date('h:i A', strtotime($customer->end_time))}}

City @if($customer->city) {{$customer->city->city_name_en}} @endif @if($customer->country) , {{$customer->country->country_name}} @endif

Edit
Bank @if($customer->bank){{ $customer->bank->name_en }}@endif
Account number {{ $customer->account_no }}
IBAN {{ $customer->ifsc }}
Swift Code {{ $customer->swift }}
Branch {{ $customer->bank_branch }}
Beneficiary Name {{ $customer->benificiary }}
@endsection @section('footerJs') @endsection