@extends('layouts.admin.app') @section('title',$store->name) @push('css_or_js') @endpush @section('content')
@include('rental::admin.provider.details.partials._header',['store'=>$store]) @if($store->vendor->status)
{{translate('messages.collected_cash_by_provider')}}
img

{{\App\CentralLogics\Helpers::format_currency($wallet->collected_cash)}}

{{\App\CentralLogics\Helpers::format_currency($wallet->pending_withdraw)}}

{{translate('messages.pending_withdraw')}}
transaction

{{\App\CentralLogics\Helpers::format_currency($wallet->total_withdrawn)}}

{{translate('messages.total_withdrawal_amount')}}
transaction

{{\App\CentralLogics\Helpers::format_currency($wallet->balance>0?$wallet->balance:0)}}

{{translate('messages.withdraw_able_balance')}}
transaction

{{\App\CentralLogics\Helpers::format_currency($wallet->total_earning)}}

{{translate('messages.total_earning')}}
transaction
@endif @php $all = $store?->trips?->count(); $completed = $store?->trips?->where('trip_status', 'completed')?->count(); $canceled = $store?->trips?->where('trip_status', 'canceled')?->count(); @endphp

{{ $store->name }}

{{ translate('messages.Business_zone') }}
{{$store?->zone?->name}}
{{ translate('messages.Business_Plan') }}
{{ ucwords($store->store_business_model) }}
{{ translate('messages.Approx. Pickup Time') }}
{{ $store->delivery_time }}
{{ translate('messages.VAT / TAX') }}
{{ $store->tax }} %
{{ translate('messages.Provider_Information') }}

{{ translate('messages.Here you can see all the information that provider submit during registration') }}

{{ translate('messages.General_Information') }}
@if ($language) @endif @if ($language)
  • {{ translate('messages.Vendor Name') }} : {{$store?->getRawOriginal('name')}}
  • {{ translate('messages.Business Address') }}
    : {{ Str::limit($store->getRawOriginal('address'), 500) }}
@foreach ($language as $lang)
  • {{ translate('messages.Vendor Name') }} : {{ $translate[$lang]['name'] ?? '' }}
  • {{ translate('messages.Business Address') }}
    : {{ isset($translate[$lang]['address']) ? Str::limit($translate[$lang]['address'], 500) : '' }}
@endforeach @endif
{{ translate('messages.Owner_Information') }}
  • {{ translate('messages.First Name') }} : {{$store->vendor->f_name}}
  • {{ translate('messages.Last Name') }} : {{$store->vendor->l_name}}
  • {{ translate('messages.Phone') }} : {{$store->vendor->phone}}
  • {{ translate('messages.Email') }} : {{ $store->vendor->email }}
  • {{ translate('messages.Password') }} : {{ translate('*************') }}
{{ translate('messages.Pickup_Zone') }}
@foreach($store->getPickupZones() as $pickupZone) @endforeach
@endsection @push('script_2') @endpush