@php $categories = App\Models\Category::with('subcategory')->whereStatus(1)->orderby('serial', 'asc')->take(8)->get(); $brands = App\Models\Brand::where(['status' => '1', 'is_popular' => '1']) ->orderby('id', 'asc') ->take(8) ->get(); @endphp