@extends('user.user_dashboard') @section('home') @php $categories = App\Models\Category::where('status', 1)->with(['products' => function ($query) { $query->where('status', 1)->where('language_id', 1)->orderBy('id', 'DESC'); }])->get(); @endphp

COLLECTIONS

{{-- --}}
@foreach ($categories as $category)

Category: {{ $category->category_name}}

@endforeach
@endsection