27 lines
445 B
PHP
27 lines
445 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Providers;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
class AppServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
/**
|
||
|
* Register any application services.
|
||
|
*/
|
||
|
public function register(): void
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Bootstrap any application services.
|
||
|
*/
|
||
|
public function boot(): void
|
||
|
{
|
||
|
//todo is dit nodig?
|
||
|
Model::unguard();
|
||
|
}
|
||
|
}
|