|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use App\Setting;
|
|
|
|
use App\SettingGroup;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
|
|
|
|
class SettingsController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\View\View
|
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
$settings = SettingGroup::with([
|
|
|
|
'settings',
|
|
|
|
])->orderBy('order', 'ASC')->get();
|
|
|
|
|
|
|
|
return view('settings.list')->with([
|
|
|
|
'groups' => $settings,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $id
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
*/
|
|
|
|
public function edit($id)
|
|
|
|
{
|
|
|
|
$setting = Setting::find($id);
|
|
|
|
|
|
|
|
if((bool)$setting->system === true) return abort(404);
|
|
|
|
|
|
|
|
if (!is_null($setting)) {
|
|
|
|
return view('settings.edit')->with([
|
|
|
|
'setting' => $setting,
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
return redirect()->route('settings.list')->with([
|
|
|
|
'error' => 'This Setting does not exist.',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $id
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
*/
|
|
|
|
public function update(Request $request, $id)
|
|
|
|
{
|
|
|
|
$setting = Setting::find($id);
|
|
|
|
|
|
|
|
if (!is_null($setting)) {
|
|
|
|
$data = Setting::getInput();
|
|
|
|
|
|
|
|
if ($setting->type == 'image') {
|
|
|
|
|
|
|
|
|
|
|
|
if($request->hasFile('value')) {
|
|
|
|
$path = $request->file('value')->store('backgrounds');
|
|
|
|
$setting->value = $path;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$setting->value = $data->value;
|
|
|
|
}
|
|
|
|
|
|
|
|
$setting->save();
|
|
|
|
|
|
|
|
return redirect()->route('settings.index')->with([
|
|
|
|
'success' => 'You have successfully edited this Setting!',
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
return redirect()->route('settings.index')->with([
|
|
|
|
'error' => 'This Setting does not exist.',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @param int $id
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
*/
|
|
|
|
public function clear($id)
|
|
|
|
{
|
|
|
|
$setting = Setting::find($id);
|
|
|
|
if((bool)$setting->system !== true) {
|
|
|
|
$setting->value = '';
|
|
|
|
$setting->save();
|
|
|
|
}
|
|
|
|
return redirect()->route('settings.index')->with([
|
|
|
|
'success' => 'You have successfully edited this Setting!',
|
|
|
|
]);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|