@extends('ecommerce.layouts.index')
@section('headers-scripts')
@if(isset($category) && !empty($category))
@elseif(isset($metaData['en']['about_us']) && !empty($metaData['en']['about_us']) )
@endif
@forelse($headScripts as $headScript)
{!! $headScript->script !!}
@empty
@endforelse
@endsection
@section('title')
{{ ucfirst(request('category_id')) }} - {{ $metaData['en']['title']}}
@endsection
@section('content')
@include('ecommerce.components.inner-header')
@include('ecommerce.components.inner-header-mobile')
@include('ecommerce.components.productlist-sidebar')
@{{ defaultProducts ? products.length : (filterByPrice ? productsByPrice.length : sortedItems.length) }} @{{locale['item']}}
@{{locale['sort_by']}}
@for ($i = 0; $i < 6; $i++)
@include('ecommerce.components.skeleton-card')
@endfor
@include('ecommerce.components.product-card')
@include('ecommerce.components.product-card')
@include('ecommerce.components.product-card')
@include('ecommerce.components.footer', ['footerScripts' => $footerScripts])
@endsection
@section('scripts')
@endsection
@section('sub-styles')
@parent
@endsection