Files
laravel-stubs/src/app/Http/Middleware/HandleInertiaRequests.php
2022-01-04 13:27:11 -07:00

60 lines
1.4 KiB
PHP

<?php
namespace App\Http\Middleware;
use Illuminate\Http\Request;
use Inertia\Middleware;
class HandleInertiaRequests extends Middleware
{
/**
* The root template that's loaded on the first page visit.
*
* @see https://inertiajs.com/server-side-setup#root-template
*
* @var string
*/
protected $rootView = 'app';
/**
* Determines the current asset version.
*
* @see https://inertiajs.com/asset-versioning
*
* @param \Illuminate\Http\Request $request
*
* @return string|null
*/
public function version(Request $request)
{
return parent::version($request);
}
/**
* Defines the props that are shared by default.
*
* @see https://inertiajs.com/shared-data
*
* @param \Illuminate\Http\Request $request
*
* @return array
*/
public function share(Request $request): array
{
$notifications = [];
$unreadNotifications = false;
if (! is_null($request->user())) {
$notifications = $request->user()->notifications;
if (count($request->user()->unreadNotifications) > 0) {
$unreadNotifications = true;
}
}
return array_merge(parent::share($request), [
'app_name' => config('app.name'),
'notifications' => $notifications,
'unreadNotifications' => $unreadNotifications,
]);
}
}