@extends('layout.app') @section('title', __('shops')) @section('content')
@foreach ($shops as $shop) @endforeach
{{ __('sl') }} {{ __('name') }} {{ __('shop_category') }} {{ __('shop_owner') }} {{ __('shop_owner_email') }} {{ __('shop_owner_phone_number') }} {{ __('subscription') }} {{ __('subscription_expire') }} {{ __('lifetime') }} {{ __('status') }} {{ __('action') }}
{{ $loop->iteration }} {{ $shop->name ?? 'N/A' }} {{ $shop->shopCategory->name ?? 'N/A' }} {{ $shop->user->name ?? 'N/A' }} {{ $shop->user->email ?? 'N/A' }} {{ $shop->user->phone ?? 'N/A' }} {{ $shop->currentSubscriptions()->subscription->title ?? 'N/A' }} {{ $shop->currentSubscriptions()->expired_at ?? 'N/A' }}
@endsection @push('scripts') @endpush