Laravel widgets package
Very simple CRUD package to list, view, add, modify, delete imaginary items called "widgets"
This package assumes that you have a Laravel web app set up and ready. Preferably the latest version (The 8.x series at the time of this writing).
1. Git clone this package.
2. Also on this package, install the required third party composer packages
composer install --prefer-dist
2. In your Laravel web app's composer.json, add this:
```
"repositories": [
{
"type": "path",
"url": <path-to-laravel-widgets>
"options": {
"symlink": true
}
}
]
```
3. Require it in your Laravel web app
composer require firebender/laravel-widgets
Write tests. Make a pull request
@firebender