laravel-nomadic icon indicating copy to clipboard operation
laravel-nomadic copied to clipboard

A toolkit of enhancements to laravel's migrations.

Results 6 laravel-nomadic issues
Sort by recently updated
recently updated
newest added

Is framework able to detour to others side

Command ```bash php artisan make:migration CreateNewTable ``` Will throw the following exception ```bash Illuminate\Contracts\Filesystem\FileNotFoundException : File does not exist at path /m360/c360/webroot/vendor/chrishalbert/laravel-nomadic/src/stubs/create.stub at /m360/c360/webroot/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:41 37| if ($this->isFile($path)) { 38| return...

The `Closure` param is namespaced to the Nomadic package, rather than the global space. ![image](https://user-images.githubusercontent.com/16158060/129192667-419825e8-bea8-4ff3-9367-4eb30bee770c.png) This and similar params should be scoped to the global namespace. Change `Closure` => `\Closure`...

It would be nice if we were able to modify the internal stub so that we can add comments and/or a template type of structure for all new migrations being...

It is difficult to understand how to properly implement a trait, without reading through the documentation. We should add an example on how to do this.

We should create a timestamp trait to document when a migration starts and stops, similar to that of the Eloquent models (created/updated). A bonus would be to make this easily...

enhancement