alive2212/laravel-smart-restful is a Laravel package for laravel smart restful.
It currently has 4 GitHub stars and 431 downloads on Packagist (latest version v4.1.15).
Install it with composer require alive2212/laravel-smart-restful.
Discover more Laravel packages by alive2212
or browse all Laravel packages to compare alternatives.
Last updated
This is CRUD package for create some wonderful thing quickly.
If any of the following are applicable to your project, then the directory structure should follow industry best practices by being named the following.
bin/
config/
src/
tests/
vendor/
Via Composer
$ composer require alive2212/laravel-smart-restful
install language
$ php artisan vendor:publish --tag=laravel_smart_restful.lang
after install put following into bootstrap\app.php
$app->instance('path.config', app()->basePath() . DIRECTORY_SEPARATOR . 'config');
$app->instance('path.storage', app()->basePath() . DIRECTORY_SEPARATOR . 'storage');
$app->register(Laravel\Scout\ScoutServiceProvider::class);
$app->configure('scout');
$skeleton = new Alive2212\LaravelSmartRestful();
echo $skeleton->echoPhrase('Hello, League!');
Please see CHANGELOG for more information on what has changed recently.
$ composer test
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.