/form-request-handler

Stores form requests in DB and does something with it.

Primary LanguagePHPMIT LicenseMIT

Form Request Handler

Build Status styleci Scrutinizer Code Quality SensioLabsInsight Coverage Status

Packagist Packagist Packagist

Package description: CHANGE ME

Installation

Install via composer

composer require daikazu/form-request-handler

Register Service Provider

Note! This and next step are optional if you use laravel>=5.5 with package auto discovery feature.

Add service provider to config/app.php in providers section

Daikazu\FormRequestHandler\ServiceProvider::class,

Register Facade

Register package facade in config/app.php in aliases section

Daikazu\FormRequestHandler\Facades\FormRequestHandler::class,

Publish Configuration File

php artisan vendor:publish --provider="Daikazu\FormRequestHandler\ServiceProvider" --tag="config"

Usage

CHANGE ME

Security

If you discover any security related issues, please email instead of using the issue tracker.

Credits

This package is bootstrapped with the help of melihovv/laravel-package-generator.