92 lines
2.0 KiB
PHP
92 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use App\Models\Color;
|
|
|
|
class ColorController extends Controller
|
|
{
|
|
/**
|
|
* Display a listing of the resource.
|
|
*/
|
|
public function index()
|
|
{
|
|
// List all colors
|
|
$colors = Color::all();
|
|
return view('colors.index', compact('colors'));
|
|
}
|
|
|
|
/**
|
|
* Show the form for creating a new resource.
|
|
*/
|
|
public function create()
|
|
{
|
|
// Create a new color
|
|
return view('colors.create');
|
|
}
|
|
|
|
/**
|
|
* Store a newly created resource in storage.
|
|
*/
|
|
public function store(Request $request)
|
|
{
|
|
// Store a new color
|
|
$request->validate([
|
|
'name' => 'required|string|max:255',
|
|
'hex' => 'required|string|max:255'
|
|
]);
|
|
|
|
$color = new Color();
|
|
$color->name = $request->name;
|
|
$color->hex = $request->hex;
|
|
$color->save();
|
|
|
|
return redirect()->route('colors.index');
|
|
}
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*/
|
|
public function show(string $id)
|
|
{
|
|
// show single color
|
|
$color = Color::find($id);
|
|
return view('colors.show', compact('color'));
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*/
|
|
public function edit(string $id)
|
|
{
|
|
// edit color
|
|
$color = Color::find($id);
|
|
return view('colors.edit', compact('color'));
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*/
|
|
public function update(Request $request, string $id)
|
|
{
|
|
// update color
|
|
$color = Color::find($id);
|
|
$color->name = $request->name;
|
|
$color->hex = $request->hex;
|
|
$color->save();
|
|
return redirect()->route('colors.show', $color->id);
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*/
|
|
public function destroy(string $id)
|
|
{
|
|
// delete color
|
|
$color = Color::find($id);
|
|
$color->delete();
|
|
return redirect()->route('colors.index');
|
|
}
|
|
}
|