php artisan make:all for Laravel with Make and generate Laravel 'Controller, Request, Model, Factory, Seed, Migration, Translation, Policy & Permissions' compatible.
mont4/laravelmaker is a Laravel package for php artisan make:all for laravel with make and generate laravel 'controller, request, model, factory, seed, migration, translation, policy & permissions' compatible..
It currently has 0 GitHub stars and 136 downloads on Packagist (latest version v4.2.4).
Install it with composer require mont4/laravelmaker.
Discover more Laravel packages by mont4
or browse all Laravel packages to compare alternatives.
Last updated
Make and generate Laravel "Controller, Request, Model, Factory, Seed, Migration, Translation, Policy & Permissions" compatible.
Via Composer
$ composer require mont4/laravelmaker
$ php artisan vendor:publish --provider="Mont4\LaravelMaker\LaravelMakerServiceProvider"
$ php artisan make:all
$ php artisan permission:sync
$ php artisan make:method
Add to boot() method in App\Providers\AuthServiceProvider
Gate::guessPolicyNamesUsing(function ($modelClass) {
$path = str_replace("\\Models\\", "\\Policies\\", $modelClass) . 'Policy';
return $path;
});
Please see the changelog for more information on what has changed recently.
$ composer test
Please see contributing.md for details and a todolist.
If you discover any security related issues, please email author email instead of using the issue tracker.
This plugin is open-sourced package licensed under the MIT license.