Lots of changes

This commit is contained in:
Simon Pocrnjič
2024-11-13 22:11:07 +01:00
parent 90a5858320
commit 953ff38d64
76 changed files with 2822 additions and 427 deletions
+6
View File
@@ -3,6 +3,8 @@
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Foundation\Application;
use Inertia\Inertia;
class AppServiceProvider extends ServiceProvider
{
@@ -12,6 +14,10 @@ class AppServiceProvider extends ServiceProvider
public function register(): void
{
//
Inertia::share([
'laravelVersion' => Application::VERSION,
'phpVersion' => PHP_VERSION
]);
}
/**