Package Data | |
---|---|
Maintainer Username: | adriangheorghe |
Maintainer Contact: | adrian.gheorghe02@gmail.com (Adrian Gheorghe) |
Package Create Date: | 2014-04-18 |
Package Last Update: | 2017-04-29 |
Language: | JavaScript |
License: | LGPL-2.1 |
Last Refreshed: | 2024-11-21 03:02:12 |
Package Statistics | |
---|---|
Total Downloads: | 141 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 9 |
Total Watchers: | 6 |
Total Forks: | 5 |
Total Open Issues: | 1 |
A CRUD package for Laravel. Using this you can create your entire c.r.u.d (Create Read Update Delete) interface in a matter of minutes
More info available on the library website http://raw.adigheorghe.ro
Run the following command in your laravel root directory
composer require webtools/raw dev-master
Or add webtools/raw
as a requirement to composer.json
:
"webtools/raw": "dev-master"
Once the package is installed you will need to add the service provider. Add the following in the providers
section in app/config/app.php
'Webtools\Raw\RawServiceProvider'
The package assets need to be published afterwards
php artisan asset:publish webtools/raw
An sql file containing sample data is available in the package.
You need to import this file in your database and then you can access:
Example code is available by accessing