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', ]; 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) { // } }