Introduce option model for storing necessary configuration data.

This commit is contained in:
2025-01-04 18:37:29 +01:00
parent 3b51ab109d
commit fa085b7384
10 changed files with 412 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Contracts\View\View;
class OptionController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index(): View
{
return view('option.index');
}
}