You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
737 B
PHP

<?php
namespace App\Http\Controllers\Customer;
use App\Http\Controllers\Controller;
use App\Models\Banner;
use App\Models\Info;
use App\Models\Location;
class HomeController extends Controller
{
public function index()
{
$infos = Info::where('is_publish', 1)->orderBy('updated_at', 'desc')->get();
$banners = Banner::orderBy('updated_at', 'desc')->get();
$locations = Location::get();
return inertia('Home/Index/Index', [
'infos' => $infos,
'banners' => $banners,
'locations' => $locations
]);
}
public function banner(Banner $banner)
{
return inertia('Home/Index/Banner', [
'banner' => $banner,
]);
}
}