This will allow you to create pivot table migration files using the new Laravel 9 closure migration format by simply passing two models. Under the hood the system will inspect the two models to generate the pivot table and foreign key names.
php artisan make:pivot Category Blog
Will generate the following migration
return new class extends Migration {
public function up()
{
Schema::create('blog_category', function (Blueprint $table) {
$table->foreignIdFor(Blog::class)->constrained()->onDelete('cascade');
$table->foreignIdFor(Category::class)->constrained()->onDelete('cascade');
$table->primary(['blog_id', 'category_id']);
$table->index('blog_id');
$table->index('category_id');
});
}
You can install the package via composer:
composer require josezenem/laravel-make-migration-pivot
php artisan make:pivot Category Blog
Optionally, you can publish the stubs using
php artisan vendor:publish --tag="laravel-make-migration-pivot-stubs"
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.