2019-03-05 18:10:11 -03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
2021-05-10 16:27:31 -03:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2019-03-05 18:10:11 -03:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
{
|
2020-07-29 11:33:16 -03:00
|
|
|
/**
|
|
|
|
* Register any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2019-03-05 18:10:11 -03:00
|
|
|
public function register()
|
2019-08-09 12:33:47 -03:00
|
|
|
{
|
2021-05-10 16:27:31 -03:00
|
|
|
Model::unguard();
|
2019-03-05 18:10:11 -03:00
|
|
|
}
|
|
|
|
|
2021-02-27 10:36:45 -03:00
|
|
|
/**
|
|
|
|
* Bootstrap any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function boot()
|
2019-03-18 08:53:00 -03:00
|
|
|
{
|
2021-02-27 10:36:45 -03:00
|
|
|
//
|
2019-03-18 08:53:00 -03:00
|
|
|
}
|
2019-03-05 18:10:11 -03:00
|
|
|
}
|