|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Customer;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use App\Models\Banner;
|
|
|
|
use App\Models\Info;
|
|
|
|
use App\Models\Location;
|
|
|
|
use App\Models\Notification;
|
|
|
|
use App\Models\Voucher;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
class HomeController extends Controller
|
|
|
|
{
|
|
|
|
public function index(Request $request)
|
|
|
|
{
|
|
|
|
$infos = Info::where('is_publish', 1)->orderBy('updated_at', 'desc')->get();
|
|
|
|
$banners = Banner::orderBy('updated_at', 'desc')->get();
|
|
|
|
$locations = Location::orderBy('updated_at', 'desc')->get();
|
|
|
|
$vouchers = Voucher::with(['location'])
|
|
|
|
->where('is_sold', Voucher::UNSOLD)
|
|
|
|
->orderBy('updated_at', 'desc');
|
|
|
|
|
|
|
|
if ($request->location_id != '') {
|
|
|
|
$vouchers->where('location_id', $request->location_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
return inertia('Index/Index', [
|
|
|
|
'infos' => $infos,
|
|
|
|
'banners' => $banners,
|
|
|
|
'locations' => $locations,
|
|
|
|
'vouchers' => tap($vouchers->paginate(10))->setHidden(['username', 'password']),
|
|
|
|
'_location_id' => $request->location_id ?? '',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function banner(Banner $banner)
|
|
|
|
{
|
|
|
|
return inertia('Index/Banner', [
|
|
|
|
'banner' => $banner,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function notification()
|
|
|
|
{
|
|
|
|
Notification::where('entity_id', auth()->id())->where('is_read', Notification::UNREAD)->update(['is_read' => Notification::READ]);
|
|
|
|
|
|
|
|
return inertia('Index/Notification', [
|
|
|
|
'notification' => Notification::where('entity_id', auth()->id())->orderBy('created_at', 'desc')->paginate(),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|