2022-08-31 00:33:36 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Initialize\Actions;
|
|
|
|
|
|
|
|
use Inertia\Inertia;
|
|
|
|
use Inertia\Response;
|
|
|
|
use Lorisleiva\Actions\Concerns\AsAction;
|
|
|
|
|
|
|
|
class InitializeFormAction
|
|
|
|
{
|
|
|
|
use AsAction;
|
|
|
|
|
|
|
|
public function asController(): Response
|
|
|
|
{
|
2023-07-15 17:28:19 +02:00
|
|
|
session()->put('title', 'Einrichtung');
|
|
|
|
|
2022-08-31 00:33:36 +02:00
|
|
|
return Inertia::render('Initialize/VIndex');
|
|
|
|
}
|
|
|
|
}
|