%PDF- %PDF-
Direktori : /home/forge/api-takeaseat.eco-n-tech.co.uk/vendor/laravel/nova/src/Console/ |
Current File : //home/forge/api-takeaseat.eco-n-tech.co.uk/vendor/laravel/nova/src/Console/ActionCommand.php |
<?php namespace Laravel\Nova\Console; use Illuminate\Console\GeneratorCommand; use Symfony\Component\Console\Input\InputOption; class ActionCommand extends GeneratorCommand { use ResolvesStubPath; /** * The console command name. * * @var string */ protected $name = 'nova:action'; /** * The console command description. * * @var string */ protected $description = 'Create a new action class'; /** * The type of class being generated. * * @var string */ protected $type = 'Action'; /** * Get the stub file for the generator. * * @return string */ protected function getStub() { if ($this->option('destructive')) { return $this->resolveStubPath('/stubs/nova/destructive-action.stub'); } return $this->resolveStubPath('/stubs/nova/action.stub'); } /** * Get the default namespace for the class. * * @param string $rootNamespace * @return string */ protected function getDefaultNamespace($rootNamespace) { return $rootNamespace.'\Nova\Actions'; } /** * Get the console command options. * * @return array */ protected function getOptions() { return [ ['destructive', null, InputOption::VALUE_NONE, 'Indicate that the action deletes / destroys resources'], ]; } }