{{$category->name}}

{{$category->description}}
@if(app()->getLocale() === 'fa')

دروازه شما
برای تسلط بر صدا

@endif

@foreach($products->pluck('name') as $item)
{{ $item }}
@endforeach
@if($products->where('status','!==','discontinue')->count() > 4)

{{__('Latest Products of')}}
{{$category->name}}

@foreach($products->where('status','!==','discontinue')->take(8) as $item)
{{$category->name}} {{$item->name}}
{{$item->excerpt}}
{{ $item->category->name .'|'. $item->name}}
@endforeach
@endif
}