@extends('layouts.master') @section('content') @include('modules.carousel') @include('modules.category')
@foreach ($categories as $category) @if($category->products->count() > 0)
{{ $category->title }}
@foreach ($category->products->shuffle()->take(config('setting.cat_limit')) as $row) @if($row->active == 1) @endif @endforeach
@endif @endforeach
@endsection