25 lines
527 B
PHP
25 lines
527 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Inertia\Inertia;
|
|
|
|
class SettingController extends Controller
|
|
{
|
|
//
|
|
|
|
public function index(Request $request){
|
|
|
|
return Inertia::render('Settings/Index', [
|
|
'actions' => \App\Models\Action::query()
|
|
->with('decisions')
|
|
->get(),
|
|
'decisions' => \App\Models\Decision::query()
|
|
->with('actions')
|
|
->get()
|
|
]
|
|
);
|
|
}
|
|
}
|