{{ __('messages.whatsapp_stores_templates.choose_your') }}
{{ __('messages.whatsapp_stores.category') }}
{{ __('messages.whatsapp_stores_templates.category_not_found') }}
{{ __('messages.whatsapp_stores_templates.choose_your') }}
{{ __('messages.whatsapp_stores.package') }}
@forelse ($whatsappStore->products()->latest()->take(8)->get() as $product)
{{ $product->currency->currency_icon }}
{{ $product->selling_price }}
@if ($product->net_price)
@empty
@endforelse
{{ $product->name }}
{{ $product->category->name }}
{{ $product->currency->currency_icon }}
{{ $product->selling_price }}
@if ($product->net_price)
{{ $product->currency->currency_icon }}{{ $product->net_price }}
@endif
{{ __('messages.whatsapp_stores_templates.product_not_found') }}
{{ __('messages.business.business_hours') }}
@php
$todayWeekName = strtolower(\Carbon\Carbon::now()->rawFormat('D'));
@endphp
@php
$weekFormat = $whatsappStore->week_format ?? 1;
if ($weekFormat == 2) {
$businessDaysTime = collect($businessDaysTime)->sortKeysUsing(function ($a, $b) {
if ($a == 7) return -1; // Sunday first
if ($b == 7) return 1;
return $a <=> $b;
})->toArray();
}
@endphp
@foreach ($businessDaysTime as $key => $dayTime)
@endforeach
{{ __('messages.business.' . \App\Models\BusinessHour::DAY_OF_WEEK[$key]) }}:
{{ $dayTime ?? __('messages.common.closed') }}
{{ __('messages.pwa.add_to_home_screen') }}
{{ __('messages.pwa.pwa_description') }}