@extends('admin.layouts.masterlayout') @section('title', 'View Shop') @section('head_title', 'Shop Management') @section('content')

Shop Details

Shop Details / Shop Management

Personal Details

Profile Image

{{ isset($shop_details->shop_name) ? $shop_details->shop_name : '-' }}

{{ $shop_details->user->name }}

Owner Name:

{{ isset($shop_details->owner_name) ? $shop_details->owner_name : '-' }}

Phone:

{{ isset($shop_details->user->phone) ? $shop_details->user->phone : '-' }}

Shop Phone:

{{ isset($shop_details->shop_phone) ? $shop_details->shop_phone : '-' }}

Email:

{{ isset($shop_details->user->email) ? $shop_details->user->email : '-' }}

Shop Email:

{{ isset($shop_details->shop_email) ? $shop_details->shop_email : '-' }}

Address:

{{ isset($shop_details->shop_address) ? $shop_details->shop_address : '-' }}

Country:

{{ isset($shop_details->country) ? $shop_details->country : '-' }}

City:

{{ isset($shop_details->city) ? $shop_details->city : '-' }}

Currency Code:

{{ isset($shop_details->currency_code) ? $shop_details->currency_code : '-' }}

Status:

@if(isset($shop_details->status)) @if($shop_details->status == 1) Active @else Inactive @endif @else - @endif

Professional Details

Shop Timing:

    @foreach($days as $index => $day) @php $dayNumber = $index + 1; $timing = $shopTimings[$dayNumber] ?? null; $start = $timing ? \Carbon\Carbon::parse($timing->opening_time)->format('h:i A') : null; $end = $timing ? \Carbon\Carbon::parse($timing->closing_time)->format('h:i A') : null; @endphp
  • {{ ucfirst($day) }}: @if($timing) {{ "$start – $end" }} @else Closed @endif
  • @endforeach

Social Links:

@if (!empty($socialLinks))
    @foreach ($socialLinks as $link)
  • @if (!empty($link)) {{ $link }} @endif
  • @endforeach
@else

-

@endif

Portfolio Images:

@forelse($shopPortfolios ?? [] as $image)
Reference Photo
@empty - @endforelse

Business Proof Image:

Business Proof
@if(!$shop_artists->isEmpty())

Artist Information

@foreach($shop_artists as $shop)
Profile Image

{{ $shop->artist_detail->name }}

@if($shop->confirm_status == 0)

Pending

@elseif($shop->connected_with_shop == 1)

Connected

@else

Not Connected

@endif

Commission: {{ $shop->commission . "%" ?? "-"}}

@if($shop->artist_type == 0)
Inshop
@else
Guest
@endif
@endforeach
@endif
Cancel Edit @if($shop_details->is_approved == 0) @endif
@endsection @section('script') @endsection