Download the PHP package nvd/crud-generator without Composer
On this page you can find all versions of the php package nvd/crud-generator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package crud-generator
NVD CRUD Generator
CRUD generator for Laravel 5.x
- Screenshots
- Features
- Installation
- Usage
- Customizing NVD CRUD Generator
- Known Problems and Their Solutions
Screenshots
Features
- Single page CRUD operations
- Inline, AJAX based table editing
- Form Input types are determined from the table field types
- Easy to set up (No need to install a separate package to handle Html and Forms)
- Easy to customize (Through configurations and custom templates)
- Intelligent route generation
- Checks overwrite
- Compatible with Laravel 5.2 ('web' route group)
- Auto route model bindings
- No need to specify field names and types
- Fully functional Controllers and Models
- Support for enum types
- Intelligent search / filtering by any field
- Sort by any field
Installation
- Download:
- Run
composer require nvd/crud-generator
from the project directory
- Run
-
Register the Service Provider in
config/app.php
: - Publish configuration file and view templates:
- Run
php artisan vendor:publish
from the project directory
- Run
- Done!
Usage
Generating CRUD for a Specific Table
Run php artisan nvd:crud table_name
Now you can access http://your-site.com/table-name to access the CRUD app. (Here table-name
refers to the singular, slugged version of the table name. e.g.
- Url for the table phones will be http://your-site.com/phone
- Url for the table user_profiles will be http://your-site.com/user-profile
- Url for the table people will be http://your-site.com/person
Customizing NVD CRUD Generator
Configuration File
NVD CRUD generator publishes a configuration file config/crud.php
. You can modify the default settings of the package here. The file is completely documented and hence self explanatory.
Templates
In case you don't like the default code that is generated for you, the templates for the generated model, controller and the views are located in the /resources/views/vendor/crud
directory. You are free to edit them as you like. Or make a copy of any of the templates directory and refer to it in the config/crud.php
.
Known Problems and Their Solutions
Layout and Styling
- The default view templates use
vendor.crud.common.app
template as the layout. If you are using a different layout, specify it in theconfig/crud.php
- The default view templates use classes from Bootstrap and Font Awesome. You can edit the templates and not use them or you can simply include them in your layout like the one below:
Routes Declaration
-
For Laravel 5.2, the generator generates routes inside the closure of the route group that applies the 'web' middleware group in the
/app/Http/route.php
out of the box, as follows:If, for some reasons, the routes are generated outside the closure, you should move them inside to avoid any exception while creating, editing or deleting a resource.
- You can also tell the generator explicitly where to declare the routes by adding a comment: 'nvd-crud routes go here' and the generator will place the route declaration just after the comment.
Exception: Class "Input" not found
- Although it happens rarely, sometimes the facade "Input" is not declared in
config/app.php
. Declare the alias and the exception will be gone:
Note: Use of Input facade was removed in the latest version. So this error is expected not to appear anyway.
Primary Keys Other Than 'id'
- At the moment NVD CRUD generator accepts only 'id' column as the primary key. Having a primary key other than 'id' will be supported in upcoming versions. But right now, you have to follow the convention.
Laravel Eloquent Conventions
- For smooth operations, Laravel conventions should be followed when creating database tables. If you are facing errors / exceptions mentioning primary keys, table names or timestamps (
created_at
,updated_at
), please refer to Laravel docs about conventions.