1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Providers;
- use Carbon\Carbon;
- use Illuminate\Support\ServiceProvider;
- use Overtrue\EasySms\EasySms;
- class AppServiceProvider extends ServiceProvider
- {
- /**
- * Register any application services.
- *
- * @return void
- */
- public function register()
- {
- // 在AppServiceProvider加入配置
- Carbon::setLocale('zh');
- $this->app->singleton('easy_sms', function ($app) {
- return (new EasySms($app->config['sms']));
- });
- }
- }
|