Files
c-cms-legacy/app/Http/Controllers/ConfigController.php
2019-08-26 10:17:11 -04:00

112 lines
2.4 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Config;
use Illuminate\Http\Request;
class ConfigController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return view ('admin.configs.general',['configs' => Config::all()]);
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Config $config
* @return \Illuminate\Http\Response
*/
public function show(Config $config)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Config $config
* @return \Illuminate\Http\Response
*/
public function edit(Config $config)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param \App\Config $config
* @return \Illuminate\Http\Response
*/
public function update()
{
$configs = [
'is_schedule_public',
'is_schedule_build',
'escadron_name_full',
'escadron_name_short',
'escadron_number',
'escadron_phone',
'escadron_element',
'element_title',
'escadron_address',
'escadron_direct_googlemap_link',
'media_facebook',
'media_twitter',
'media_instagram',
'media_email',
];
foreach ($configs as $config) {
$c = \App\Config::all()->where('name',$config)->first();
$c->data = [request($config)];
$c->save();
}
\App\Log::saveLog('Modification de la configuration du site');
return redirect('/admin/config')->with('success','Modification sauvegarder avec succès !');
}
/**
* Remove the specified resource from storage.
*
* @param \App\Config $config
* @return \Illuminate\Http\Response
*/
public function destroy(Config $config)
{
//
}
}