mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-12 02:00:47 +01:00
40 lines
839 B
PHP
40 lines
839 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers;
|
||
|
|
||
|
use Illuminate\Http\Request;
|
||
|
use Illuminate\Support\Facades\DB;
|
||
|
|
||
|
class SettingController extends Controller
|
||
|
{
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Get options
|
||
|
* @return [type] [description]
|
||
|
*/
|
||
|
public function index()
|
||
|
{
|
||
|
// Fetch all setting values
|
||
|
$settings = DB::table('options')->get();
|
||
|
|
||
|
return response()->json(['settings' => $settings], 200);
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Save options
|
||
|
* @return [type] [description]
|
||
|
*/
|
||
|
public function store(Request $request)
|
||
|
{
|
||
|
// Store all setting values
|
||
|
foreach($request->all() as $opt => $val) {
|
||
|
option([$opt => $val]);
|
||
|
$settings[$opt] = option($opt);
|
||
|
}
|
||
|
|
||
|
return response()->json(['message' => __('settings.forms.setting_saved'), 'settings' => $settings], 200);
|
||
|
}
|
||
|
}
|