@extends('layouts.app') @section('content')

{{ __('Shop Details') }}

@include('admin.shop.header-nav')

{{ $shop->name }}

{{ $shop->averageRating }}
{{ $shop->reviews->count() }} {{ __('Reviews') }}
{{__('View Live')}}
{{__('Total products')}}: {{ $shop->products->count() }}
{{__('Total Orders')}}: {{ $shop->orders->count() }}
{{__('Shop Information')}}
{{__('Name')}} {{ $shop->name }}
{{__('Estimated Delivery Time')}} {{ $shop->estimated_delivery_time }}
{{__('User Information')}}
{{__('Name')}} {{ $shop->user?->name }}
{{__('Phone number')}} {{ $shop->user?->phone }}
{{__('Email')}} {{ $shop->user?->email }}
{{__('Shop Description')}}

{!! $shop->description !!}

@csrf
@endsection @push('scripts') @endpush