Laravel 5
PHP 5.6+
No commit activity in last 2 years
No release in over 2 years
Laravel Settings UI
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Project Readme

Laravel Settings UI

Simple UI for anlutro/laravel-settings

Requirements

Installation

This plugin can only be installed from Composer.

Run the following command:

$ composer require imtigger/laravel-settings-ui

Add the following to your config/app.php:

'providers' => [
    ...
    Imtigger\LaravelSettingsUI\LaravelSettingsUIServiceProvider::class,
]

Add route to web.php

Route::get('/setting', ['as' => 'laravel-settings-ui', 'uses' => '\\Imtigger\\LaravelSettingsUI\\Controller@get']);
Route::post('/setting', ['as' => 'laravel-settings-ui.post', 'uses' => '\\Imtigger\\LaravelSettingsUI\\Controller@post']);

Publish config, form and view

php artisan vendor:publish --provider="Imtigger\LaravelSettingsUI\LaravelSettingsUIServiceProvider" 

Usage

Edit app/Forms/LaravelSettingsForm.php to add/remove fields

All fields in this Form is automagically saved

Edit resources\views\vendor\laravel-settings-ui\settings.blade.php to adapt it to your favorite theme!

Final word: Remember use middleware to protect routes

Laravel Form Builder Documentations

Laravel Settings Documentations