Skip to content

Instantly share code, notes, and snippets.

@drewjbartlett
Last active August 18, 2017 03:59
Show Gist options
  • Save drewjbartlett/875b82461b19fdc17aa9caa95bb62549 to your computer and use it in GitHub Desktop.
Save drewjbartlett/875b82461b19fdc17aa9caa95bb62549 to your computer and use it in GitHub Desktop.
Laravel ModelMake Command with custom namespace and table option
// app/Console/Kernel.php
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
// add this to your commands
Commands\ModelMakeCommand::class
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
$schedule->command('inspire')
->hourly();
}
/**
* Register the Closure based commands for the application.
*
* @return void
*/
protected function commands()
{
require base_path('routes/console.php');
}
}
// app/Console/stubs/model.stub
<?php
namespace DummyNamespace;
use Illuminate\Database\Eloquent\Model;
class DummyClass extends Model {
protected $table = 'DummyTableName';
}
// app/Console/Commands/ModelMakeCommand.php
<?php
namespace App\Console\Commands;
use Illuminate\Foundation\Console\ModelMakeCommand as Command;
use Illuminate\Support\Str;
use Symfony\Component\Console\Input\InputOption;
class ModelMakeCommand extends Command {
// This assumes you have a custom namespace you want to use
// In this case it'd be App\Model\{ModelName}
protected function getDefaultNamespace ($rootNamespace) {
return "{$rootNamespace}\Model";
}
public function getTableName () {
return $this->option('table') ? $this->option('table') : Str::plural(Str::snake(class_basename($this->argument('name'))));
}
protected function createMigration () {
$table = $this->getTableName();
$this->call('make:migration', [
'name' => "create_{$table}_table",
'--create' => $table,
]);
}
protected function buildClass ($name) {
return str_replace(
'DummyTableName', $this->getTableName(), parent::buildClass($name)
);
}
protected function getStub () {
return app_path().'/Console/stubs/model.stub';
}
protected function getOptions () {
return [
['migration', 'm', InputOption::VALUE_NONE, 'Create a new migration file for the model.'],
['controller', 'c', InputOption::VALUE_NONE, 'Create a new controller for the model.'],
['resource', 'r', InputOption::VALUE_NONE, 'Indicates if the generated controller should be a resource controller'],
['table', 't', InputOption::VALUE_OPTIONAL, 'Indicates the name of the table to place in the model.'],
];
}
}
@aginanjar
Copy link

Thanks for sharing 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment