PATH:
home
/
lab2454c
/
costbloc.com
/
Modules
/
FormBuilder
/
Config
<?php return [ 'name' => 'FormBuilder', /** * Url path to use for this package routes */ 'url_path' => 'admin/forms', /** * Template layout file. This is the path to the layout file your application uses */ 'layout_file' => 'admin.layouts.app', /** * The stack section in the layout file to output js content * Define something like @stack('stack_name') and provide the 'stack_name here' */ 'layout_js_stack' => 'scripts', /** * The stack section in the layout file to output css content */ 'layout_css_stack' => 'styles', /** * The class that will provide the roles we will display on form create or edit pages? */ 'roles_provider' => Modules\FormBuilder\Services\RolesProvider::class, /** * Models used in form builder */ 'models' => [ 'user' => \App\Models\User::class, ], ];
[-] config.php
[edit]
[+]
..