@php $phone_numbers = !empty($userContact->contact_numbers) ? explode(',', $userContact->contact_numbers) : []; $emails = !empty($userContact->contact_mails) ? explode(',', $userContact->contact_mails) : []; @endphp
@if (isset($social_medias))
    @foreach ($social_medias as $social_media)
  • @endforeach
@endif
@csrf
@guest('customer') {{ $keywords['Login'] ?? __('Login') }} @endguest @auth('customer') {{ $keywords['Dashboard'] ?? __('Dashboard') }} @endauth
@if (count($emails) > 0) @endif
@if (isset($social_medias))
    @foreach ($social_medias as $social_media)
  • @endforeach
@endif
@csrf
@if (count($phone_numbers) > 0) @foreach ($phone_numbers as $phone_number) @if ($loop->last)

{{ $keywords['Need_help'] ?? __('Need help?') }} {{ $keywords['Talk_to_an_expert'] ?? __('Talk to an expert') }}: {{ $phone_number }}

@endif @endforeach @endif
{{-- {{ route('front.user.shop', getParam()) . '?category=' . urlencode($category->slug) }} --}} @php $crt = Session::get('cart'); $crtTotal = 0; $countitem = 0; if ($crt) { foreach ($crt as $p) { $crtTotal += $p['total']; $countitem += $p['qty']; } } @endphp
    @if (!empty($userShopSetting) && empty($userShopSetting->catalog_mode))
  • {{ $crt ? $countitem : 0 }}
    @if ($crt)
    @foreach ($crt as $key => $item) @php $id = $item['id']; $product = App\Models\User\UserItem::findOrFail($item['id']); @endphp
    {{ strlen($item['name']) > 20 ? mb_substr($item['name'], 0, 20, 'UTF-8') . '...' : $item['name'] }} ( {{ $kewords['qty'] ?? __('Qty') }} : {{ $item['qty'] }} , {{ $kewords['total'] ?? __('Total') }} : {{ $userBs->base_currency_symbol_position == 'left' ? $userBs->base_currency_symbol : '' }} {{ $item['total'] }} {{ $userBs->base_currency_symbol_position == 'right' ? $userBs->base_currency_symbol : '' }} ) @if (!empty($item['variations'])) @foreach ($item['variations'] as $k => $itm)
    {{ $k }}   {{ $itm['name'] }}   +   {{ $be->base_currency_symbol_position == 'left' ? $be->base_currency_symbol : '' }} {{ $itm['price'] * $item['qty'] }} ; {{ $be->base_currency_symbol_position == 'right' ? $be->base_currency_symbol : '' }}
    @endforeach @endif
    {{-- --}}
    @endforeach
    {{ $keywords['total'] ?? __('Total') }} {{ $userBs->base_currency_symbol_position == 'left' ? $userBs->base_currency_symbol : '' }} {{ $crtTotal }} {{ $userBs->base_currency_symbol_position == 'right' ? $userBs->base_currency_symbol : '' }}
    @else {{ $keywords['cart_empty'] ?? __('your cart is empty !') }} @endif
  • @endif