tdebatty / laravel-resource-generator
Source code generator for laravel resources
Installs: 5 504
Dependents: 1
Suggesters: 0
Security: 0
Stars: 4
Watchers: 3
Forks: 1
Open Issues: 0
Requires
- composer/composer: ^1.6 || ^2.0
- illuminate/console: ^8.0 || ^9.0
- illuminate/filesystem: ^8.0 || ^9.0
- illuminate/support: ^8.0 || ^9.0
Requires (Dev)
- phpunit/phpunit: ^7.2
- squizlabs/php_codesniffer: ^3.3
README
A source code generator for Laravel resources.
In Laravel, you can create a resource controller using the command php artisan make:controller PostController --resource
. But:
- the controller contains only empty methods
- you have to manually add request validation
- you have to write all your views
With this plugin, you immediately get working code:
- a fully functional controller with request validation
- basic views to list, create, modify and delete your resource
Installation
$ composer require --dev tdebatty/laravel-resource-generator
Example
$ php artisan resource:make Post -i fa
Generate migration and model...
Generate routes...
Generate views...
Generate controller...
Done!
You may now fill the migration file
And then run php artisan migrate
Your resources will be available at http://127.0.0.1:8000/app/posts
The default controller and views assume resources have a name field. You have to add this field manually to your migration file (and other fields according to your needs):
$ nano database/migrations/*_create_posts_table.php
You can now migrate and check the result:
$ php artisan migrate
$ php artisan serve
Compatibility
Currently generates code for Laravel 5.6 (Bootstrap 4). The generated code is vanilla Laravel code (i.e. views use Blade syntax with no additional libraries or dependencies).
The generator can also add icons using following icon sets:
- Font Awesome 5 :
php artisan resource:make Model -i fa
- Font Awesome 4 :
php artisan resource:make Model -i fa4