Package Data | |
---|---|
Maintainer Username: | developernaren |
Maintainer Contact: | developer.naren@gmail.com (Naren) |
Package Create Date: | 2015-11-15 |
Package Last Update: | 2015-12-16 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-26 15:25:18 |
Package Statistics | |
---|---|
Total Downloads: | 28 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 4 |
Total Watchers: | 4 |
Total Forks: | 2 |
Total Open Issues: | 0 |
Crud Operations for Laravel
$ composer require developernaren/laravel-crud
Note: This pacakage is still not a stable package, hence not suitable for production.
DeveloperNaren\Crud\Providers\CrudServiceProvider::class
add this line to the service providers list in app.config.php and that's it.
$ php artisan vendor:publish
To copy the config file to your config directory
I am making this package highly customizable. A lof of options in this package can be customized through the config file.
$ php artisan crud:whole
This command asks two questions
This command generates controller, model, request, create view, list view, migration files.
If you do not have to generate all the files, You can generate things individually
$ php artisan crud:controller <entity>
This generates controller for the given entity
$ php artisan crud:model <entity> <field string>
This generats model for the given entity with fillable
We can also generate relations this package. The supplied format to support realtions
<field>:fr-<foreigntable>.<foreign field>
for not null foreign keys
<field>:nlfr-<foreigntable>.<foreign field>
for nullable foreign keys
The foreign keys are made generic to support migration and relation.
$ php artisan crud:model blog name:str,author_id:nlfr-users.id
This command will generate a method
function user() {
$this->belongsTo( 'User' );
}
in Blog.php
Meaning a blog belongs to a user
$ php artisan crud:view <entity> <field string>
This generates create.blade.php and list.blade.php for the given entity with the fields
This module can now generate input, textarea, select, radio, checkbox based on the fields provided
$ php artisan crud:request <entity> <field string>
This generates FormRequest class for the add form
$ php artisan request:migration <entity> <field string>
This generates migration for the given entity with the mentioned fields
We can also generate foreign keys through this package. The supplied format to support foreign keys should be
<field>:fr-<foreigntable>.<foreign field>
for not null foreign keys
<field>:nlfr-<foreigntable>.<foreign field>
for nullable foreign keys
We can also provide path for the migration to be created at in config file.
Todos: