summaryrefslogtreecommitdiff
path: root/app/Http/Controllers/Controller.php
diff options
context:
space:
mode:
authorThomas Grothe <grothe.tr@gmail.com>2026-04-11 17:49:42 -0400
committerThomas Grothe <grothe.tr@gmail.com>2026-04-11 17:49:42 -0400
commitd4f97aa956be051dd5b9a184557106dc7de112ac (patch)
treee4c73c93408b5fbc4cc1b92cabcaceaaebbb1833 /app/Http/Controllers/Controller.php
parentbcac54576d7309ac0471a7be5664c5a4e8d7349e (diff)
parent054c19bf65beb43d0dd6137f9bf16cf8ca9f6190 (diff)
Merge remote-tracking branch 'origin/main'
Diffstat (limited to 'app/Http/Controllers/Controller.php')
-rwxr-xr-xapp/Http/Controllers/Controller.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php
index 8677cd5..e7f7c94 100755
--- a/app/Http/Controllers/Controller.php
+++ b/app/Http/Controllers/Controller.php
@@ -2,7 +2,9 @@
namespace App\Http\Controllers;
+use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
+
abstract class Controller
{
- //
+ use AuthorizesRequests;
}