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.
voucher/app/Http/Middleware/HandleInertiaCustomerReques...

57 lines
1.5 KiB
PHP

<?php
namespace App\Http\Middleware;
use App\Models\Notification;
use App\Models\Setting;
use Illuminate\Http\Request;
use Inertia\Middleware;
class HandleInertiaCustomerRequests extends Middleware
{
/**
* The root template that is loaded on the first page visit.
*
* @var string
*/
protected $rootView = 'app';
/**
* Determine the current asset version.
*/
public function version(Request $request): string|null
{
return parent::version($request);
}
/**
* Define the props that are shared by default.
*
* @return array<string, mixed>
*/
public function share(Request $request): array
{
$cart_count = 0;
$notification_count = 0;
if (auth('customer')->check()) {
$notification_count = Notification::where('entity_id', auth()->id())->where('is_read', Notification::UNREAD)->count();
$cart_count = auth('customer')->user()->carts()->sum('quantity');
}
return array_merge(parent::share($request), [
'app_name' => env('APP_NAME', 'App Name'),
'setting' => Setting::getSettings(),
'auth' => [
'user' => auth('customer')->user()?->load(['level', 'paylater', 'locationFavorites']),
],
'flash' => [
'message' => fn () => $request->session()->get('message') ?? ['type' => null, 'message' => null],
],
'notification_count' => $notification_count,
'cart_count' => $cart_count,
]);
}
}