I\'ve created Payment package for my laravel project
I want to make migration files inside migrations folder of my package. How can create it using artisan command?
you need to publish them from your package to your migrations folder like this in your package service provider boot method:
$this->publishes([
__DIR__.'/Database/migrations/' => database_path('migrations'),
], 'migrations');
run this command php artisan vendor:publish --tag=migrations
and after that you can run php artisan migrate