44 lines
1011 B
PHP
44 lines
1011 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Models\Link;
|
|
use App\Models\Reply;
|
|
use App\Models\Topic;
|
|
use App\Observers\LinkObserver;
|
|
use App\Observers\ReplyObserver;
|
|
use App\Observers\TopicObserver;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
Carbon::setLocale('zh');
|
|
Topic::observe(new TopicObserver());
|
|
Reply::observe(new ReplyObserver());
|
|
Link::observe(new LinkObserver());
|
|
}
|
|
|
|
/**
|
|
* Register any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
if ($this->app->environment() !== 'production') {
|
|
$this->app->register(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class);
|
|
}
|
|
if (app()->isLocal()) {
|
|
$this->app->register(\VIACreative\SudoSu\ServiceProvider::class);
|
|
}
|
|
}
|
|
}
|