Files
Caramel-CRM/app/Http/Middleware/HandleInertiaRequests.php
T

48 lines
1.2 KiB
PHP
Raw Normal View History

2025-10-20 08:57:51 +02:00
<?php
namespace App\Http\Middleware;
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'),
'auth' => ['user' => $request->user(),],
2025-10-20 08:57:51 +02:00
'sidebarOpen' => ! $request->hasCookie('sidebar_state') || $request->cookie('sidebar_state') === 'true',
'cron' => Setting::get('app.cron_method') === 'request'
2025-10-20 08:57:51 +02:00
];
}
}