This module supports backend for fmblog-frontend-form.
Required packages --no required packages--
Required Modules
- Laravel-Module-Core
Functionalities
- View the submitted forms
Installation
- Add the module to Laravel project as a submodule.
git submodule add https://github."/bwqr/fmblog-backend-form app/Modules/Form
- Add the route file
Http/form.php
toapp/Providers/RouteServiceProvider.php
and register inside themap
function, eg.
protected function mapFormRoutes() { Route::prefix('api/form') ->middleware('api') ->namespace($this->moduleNamespace . "\Form\Http\Controllers") ->group(base_path('app/Modules/Form/Http/forms.php')); }