2025-10-20 08:57:51 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
|
|
2025-12-07 12:55:33 +01:00
|
|
|
use App\Models\Setting;
|
2025-10-20 08:57:51 +02:00
|
|
|
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
|
|
|
|
|
*/
|
|
|
|
|
public function version(Request $request): ?string
|
|
|
|
|
{
|
|
|
|
|
return parent::version($request);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Define the props that are shared by default.
|
|
|
|
|
*
|
|
|
|
|
* @see https://inertiajs.com/shared-data
|
|
|
|
|
*
|
|
|
|
|
* @return array<string, mixed>
|
|
|
|
|
*/
|
|
|
|
|
public function share(Request $request): array
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
...parent::share($request),
|
|
|
|
|
'name' => config('app.name'),
|
2025-12-07 12:55:33 +01:00
|
|
|
'auth' => ['user' => $request->user(),],
|
2025-10-20 08:57:51 +02:00
|
|
|
'sidebarOpen' => ! $request->hasCookie('sidebar_state') || $request->cookie('sidebar_state') === 'true',
|
2025-12-07 12:55:33 +01:00
|
|
|
'cron' => Setting::get('app.cron_method') === 'request'
|
2025-10-20 08:57:51 +02:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|