61 lines
1.5 KiB
PHP
61 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use App\Models\Category;
|
|
use Illuminate\Http\Request;
|
|
use Inertia\Middleware;
|
|
use Tighten\Ziggy\Ziggy;
|
|
|
|
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(),
|
|
],
|
|
'navigation_categories' => fn () => $request->user()
|
|
? Category::query()
|
|
->where('user_id', $request->user()->id)
|
|
->whereNull('parent_id')
|
|
->with('children:id,parent_id,title')
|
|
->orderBy('title')
|
|
->get(['id', 'parent_id', 'title'])
|
|
: [],
|
|
'ziggy' => fn () => [
|
|
...new Ziggy()->toArray(),
|
|
'location' => $request->url(),
|
|
]
|
|
];
|
|
}
|
|
}
|