@extends('layouts.admin.app', ['page' => $menuAdmin['stores']['active'] ?? ""]) @section('title', $store->name) @section('header_data') @php $page_title = $store->name; $page_pretitle = __('labels.list'); @endphp @endsection @php $breadcrumbs = [ ['title' => __('labels.home'), 'url' => route('admin.dashboard')], ['title' => __('labels.stores'), 'url' => route('admin.sellers.store.index')], ['title' => $store->name, 'url' => null], ]; @endphp @section('admin-content')

{{ __('labels.about') }}

{{ __('labels.name') }} {{ $store->name }}
{{ __('labels.visibility_status') }} {{ ucfirst(Str::replace("_", " ",$store->visibility_status->value)) }}
{{ __('labels.verification_status') }} {{ ucfirst(Str::replace("_", " ",$store->verification_status->value)) }}
{{ __('labels.fulfillment_type') }} {{ ucfirst($store->fulfillment_type->value) }}

{{ __('labels.contact_information') }}

{{ __('labels.contact_email') }} {{ $store->contact_email }}
{{ __('labels.contact_number') }} {{ $store->contact_number }}

{{ __('labels.location_details') }}

{{ __('labels.address') }} {{ $store->address }}
{{ __('labels.city') }} {{ $store->city }}
{{ __('labels.state') }} {{ $store->state }}
{{ __('labels.landmark') }} {{ $store->landmark }}
{{ __('labels.zipcode') }} {{ $store->zipcode }}
{{ __('labels.country') }} {{ $store->country }}
{{ __('labels.country_code') }} {{ $store->country_code }}
{{ __('labels.latitude') }} {{ $store->latitude }}
{{ __('labels.longitude') }} {{ $store->longitude }}
{{ __('labels.delivery_zone_id') }} {{ $store->delivery_zone_id }}

{{ __('labels.operational_timing') }}

{{ __('labels.timing') }} {{ $store->timing }}
{{ __('labels.order_preparation_time') }} {{ $store->order_preparation_time }}
{{ __('labels.max_delivery_distance') }} {{ $store->max_delivery_distance }}
{{ __('labels.store_status') }} @if($store->status === 'online') {{ __('labels.online') }} @else {{ __('labels.offline') }} @endif

{{ __('labels.financial_bank_details') }}

{{ __('labels.currency_code') }} {{ $store->currency_code }}
{{ __('labels.tax_name') }} {{ $store->tax_name }}
{{ __('labels.tax_number') }} {{ $store->tax_number }}
{{ __('labels.bank_name') }} {{ $store->bank_name }}
{{ __('labels.bank_branch_code') }} {{ $store->bank_branch_code }}
{{ __('labels.account_holder_name') }} {{ $store->account_holder_name }}
{{ __('labels.account_number') }} {{ $store->account_number }}
{{ __('labels.routing_number') }} {{ $store->routing_number }}
{{ __('labels.bank_account_type') }} {{ $store->bank_account_type }}
{{--
--}} {{--
--}} {{--

{{ __('labels.shipping_delivery') }}

--}} {{--
--}} {{--
--}} {{--
--}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{--
{{ __('labels.domestic_shipping_charges') }}{{ $store->domestic_shipping_charges }}
{{ __('labels.international_shipping_charges') }}{{ $store->international_shipping_charges }}
--}} {{--
--}} {{--
--}} {{--
--}}

{{ __('labels.logo') }}

{{ __('labels.banner') }}

{{ __('labels.address_proof') }}

{{ __('labels.voided_check') }}

@if($verifyPermission ?? false)

{{ __('labels.verify_account') }}

@endif
@endsection