Encore\Admin\Commands\MakeCommand::handle PHP 메소드

handle() 공개 메소드

Execute the console command.
public handle ( ) : void
리턴 void
    public function handle()
    {
        if (!$this->modelExists()) {
            $this->error('Model does not exists !');
            return false;
        }
        $this->type = $this->parseName($this->getNameInput());
        parent::fire();
    }