hasArgument('name') ? $this->argument('name') : $this->ask('What is the name of the action?', 'MakeSmoothie'); $contents = file_get_contents(__DIR__.'/../stubs/action.php'); $contents = str_replace('MakeSmoothie', $name, $contents); $contents = str_replace('make-smoothie', Str::slug($name), $contents); $path = app_path('Pilot/Actions/'.$name.'.php'); if (file_exists($path)) { $this->error('Action already exists!'); return; } @mkdir(dirname($path), 0755, true); file_put_contents($path, $contents); $this->info('Action created successfully!'); } }