관리-도구
편집 파일: UiServiceProvider.php
<?php namespace Laravel\Ui; use Illuminate\Support\ServiceProvider; use Illuminate\Contracts\Support\DeferrableProvider; class UiServiceProvider extends ServiceProvider implements DeferrableProvider { /** * Register the package services. * * @return void */ public function register() { if ($this->app->runningInConsole()) { $this->commands([ AuthCommand::class, UiCommand::class, ]); } } /** * Get the services provided by the provider. * * @return array */ public function provides() { return [ AuthCommand::class, UiCommand::class, ]; } }