kcal/app/Http/Controllers/FoodController.php

109 lines
3.0 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Models\Food;
use App\Support\Nutrients;
use Illuminate\Contracts\View\View;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Collection;
class FoodController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index(): View
{
return view('foods.index')
->with('foods', Food::all()->sortBy('name'));
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Contracts\View\View
*/
public function create(): View
{
return $this->edit(new Food());
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request): RedirectResponse
{
return $this->update($request, new Food());
}
/**
* Display the specified resource.
*/
public function show(Food $food): View
{
return view('foods.show')->with('food', $food);
}
/**
* Show the form for editing the specified resource.
*/
public function edit(Food $food): View
{
return view('foods.edit')
->with('food', $food)
->with('nutrients', Nutrients::$all)
->with('serving_units', new Collection([
['value' => 'tsp', 'label' => 'tsp.'],
['value' => 'tbsp', 'label' => 'tbsp.'],
['value' => 'cup', 'label' => 'cup'],
]));
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, Food $food): RedirectResponse
{
$attributes = $request->validate([
'name' => 'required|string',
'detail' => 'nullable|string',
'brand' => 'nullable|string',
'serving_size' => 'required|numeric',
'serving_unit' => 'nullable|string',
'serving_weight' => 'required|numeric',
'calories' => 'nullable|numeric',
'fat' => 'nullable|numeric',
'cholesterol' => 'nullable|numeric',
'sodium' => 'nullable|numeric',
'carbohydrates' => 'nullable|numeric',
'protein' => 'nullable|numeric',
]);
$food->fill(array_filter($attributes))->save();
return redirect(route('foods.show', $food))
->with('message', 'Changes saved!');
}
/**
* Confirm removal of specified resource.
*/
public function delete(Food $food): View
{
return view('foods.delete')->with('food', $food);
}
/**
* Remove the specified resource from storage.
*/
public function destroy(Food $food): RedirectResponse
{
if ($food->foodAmounts()->count()) {
return back()->withErrors('Cannot delete: this food is used in recipes.');
}
$food->delete();
return redirect(route('foods.index'))
->with('message', "Food {$food->name} deleted!");
}
}