@extends('frontend::layouts.master') @section('title') {{ $seo?->title ?? siteName() }} @endsection @push('style') @endpush @section('content')

Categories

    @foreach ($categories as $key => $category)
  • @endforeach
@if (count($categories) > 7)
@endif

Brands

    @foreach ($brands as $key => $brand)
  • @endforeach
@if (count($brands) > 7)
@endif
@if ($featuredProducts->count() > 0)
Featured Products
@foreach ($featuredProducts as $key => $fp)
{{ $fp->title }}

{{ Str::limit($fp->title, 40, '...') }}

@include('frontend::components.avg-ratting', [ 'rating' => $fp->approved_reviews_avg_ratting, 'class' => 'd-flex list-unstyled', ])
{!! $fp->getDisplayPrice() !!}
@endforeach
@endif
@include('frontend::components.newsletter_area')
@endsection @push('script') @endpush