LWCrud is a lightweight CRUD example for Laravel 7+. designed to be a minimal kick off point for fast provision of boring list and forms. It is very much in development and no guarantees are given for stability whatsoever.
You can install the package via composer:
composer require sitesurfer/lwcrud
You can publish and run the migrations with:
php artisan vendor:publish --provider="Sitesurfer\Lwcrud\LwcrudServiceProvider" --tag="lwcrud-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --provider="Sitesurfer\Lwcrud\LwcrudServiceProvider" --tag="lwcrud-config"
This is the contents of the published config file:
return [
];
$lwcrud = new Sitesurfer\Lwcrud();
echo $lwcrud->echoPhrase('Hello, Sitesurfer!');
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.