/var/www/cobraambalaj/app/Http/Controllers
Edit: /var/www/cobraambalaj/app/Http/Controllers/HomeController.php (1209B)
orderBy('id', 'desc')->get();
$categories = Category::where('deleted', '=', 0)->orderBy('id', 'desc')->get();
$products = Product::with('categories')->orderBy('id', 'desc')->get();
$workprocess = WorkProcess::with('media')->orderBy('id', 'desc')->get();
$whychooseus = WhyChooseUs::with('media')->orderBy('id', 'desc')->get();
$clients = Client::with('media')->orderBy('id', 'desc')->get();
return view('home')->with([
// Sliders
'sliders' => $sliders,
// Categories
'categories' => $categories,
// Products
'products' => $products,
// Work Process
'workprocess' => $workprocess,
// Why Choose Us
'whychooseus' => $whychooseus,
// Clients
'clients' => $clients,
]);
}
}