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

format_list_bulleted {{ __('Categories') }}

@foreach ($categories as $key => $pcategory) @endforeach {{-- --}} {{ __('All Categories') }}