feat: Implement Dynamics CRUD

This commit is contained in:
Daan Meijer
2026-06-15 00:30:57 +02:00
commit 647a708160
346 changed files with 34146 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<?php
namespace App\Providers;
use App\Models\Dynamic;
use App\Policies\DynamicPolicy;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
class AuthServiceProvider extends ServiceProvider
{
/**
* The model to policy mappings for the application.
*
* @var array<class-string, class-string>
*/
protected $policies = [
Dynamic::class => DynamicPolicy::class,
];
/**
* Register any authentication / authorization services.
*/
public function boot(): void
{
$this->registerPolicies();
//
}
}