<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class LandingController extends Controller
{
public function index()
{
$products = \App\Models\Product::query()
->where('is_active', true)
->latest()
->get();
return view('landing', compact('products'));
}
}