@if ($seederRun)
Seeder dose not run. Please run
php artisan
migrate:fresh
--seed or
Click
here
@endif
@if ($storageLink)
Storage link dose not exist or image not found then please run
php artisan
storage:link or
Click here
@endif
@if (request()->subscription_required && !request()->routeIs('shop.subscription.index'))
@if (!request()->current_subscription)
You currently do not have an active subscription. Please purchase a plan to
start selling.
Choose Plan
@endif
@if (request()->current_subscription &&
!request()->subscription_expired &&
request()->current_subscription->remaining_sales === 0)
You have reached the maximum number of sales for your current subscription.
Renew Subscription
@endif
@if (request()->subscription_about_to_expire)
Your subscription will expire in {{ request()->subscription_time_left }}.
Renew Subscription
@endif
@if (request()->subscription_expired)
Your subscription has expired.
Renew Subscription
@endif
@endif
@yield('content')
@if (!$generaleSetting || $generaleSetting?->show_footer)
@endif