a2design / extended-crud
Extends templates compiling for appzcoder/crud-generator
Installs: 50
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
pkg:composer/a2design/extended-crud
Requires
- appzcoder/crud-generator: ^1.0
This package is not auto-updated.
Last update: 2025-10-04 03:58:16 UTC
README
Extends templates compiling for appzcoder/crud-generator
Requirements
Laravel >=5.1
PHP >= 5.5.9
Installation
-
Run
composer require a2design/extended-crud
-
Add service provider to /config/app.php file.
'providers' => [ ... A2Design\ExtendedCrud\ExtendedCrudServiceProvider::class, ],
-
Install laravelcollective/html package for form & html.
- Run
composer require laravelcollective/html // For laravel 5.1 composer require laravelcollective/html "5.1.*"
- Add service provider & aliases to /config/app.php file.
'providers' => [ ... Collective\Html\HtmlServiceProvider::class, ], // Use the lines below for "laravelcollective/html" package otherwise remove it. 'aliases' => [ ... 'Form' => Collective\Html\FormFacade::class, 'HTML' => Collective\Html\HtmlFacade::class, ],
-
Run composer dump-autoload
-
Publish config file & generator template files.
php artisan vendor:publish
Note: You should have configured database for this operation.
Commands
See docs of original generator