mirror of
https://github.com/coollabsio/coolify.git
synced 2026-08-30 02:24:30 -05:00
63 lines
1.4 KiB
PHP
63 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Inertia\Middleware;
|
|
|
|
final 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),
|
|
// Example data
|
|
'teams' => [
|
|
[
|
|
'id' => 1,
|
|
'name' => 'Team 1',
|
|
],
|
|
[
|
|
'id' => 2,
|
|
'name' => 'Team 2',
|
|
],
|
|
],
|
|
'currentTeam' => [
|
|
'id' => 1,
|
|
'name' => 'Team 1',
|
|
],
|
|
'flash' => [
|
|
'message' => fn () => $request->session()->get('message'),
|
|
],
|
|
];
|
|
}
|
|
}
|