wip
This commit is contained in:
@@ -5,10 +5,14 @@ declare(strict_types=1);
|
||||
namespace Toby\Architecture\Providers;
|
||||
|
||||
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
||||
use Toby\Domain\Policies\HolidayPolicy;
|
||||
use Toby\Eloquent\Models\Holiday;
|
||||
|
||||
class AuthServiceProvider extends ServiceProvider
|
||||
{
|
||||
protected $policies = [];
|
||||
protected $policies = [
|
||||
Holiday::class => HolidayPolicy::class
|
||||
];
|
||||
|
||||
public function boot(): void
|
||||
{
|
||||
|
Reference in New Issue
Block a user