@extends('user.user_dashboard') @section('home') All Products Dashboard Collections @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}} @forelse ($category->products as $book) {{ $book->product_name }} @empty Products Coming Soon @endforelse @endforeach @endsection