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() { $config = Config::all()->where('name',request('perm'))->first(); if (request('value') == "true") { $config->data = ["true"]; } else { $config->data = ["false"]; } $config->save(); \App\Log::saveLog('Modification de la configuration du site'); } /** * Remove the specified resource from storage. * * @param \App\Config $config * @return \Illuminate\Http\Response */ public function destroy(Config $config) { // } }