You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.8 KiB
PHTML
76 lines
1.8 KiB
PHTML
2 years ago
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers;
|
||
|
|
||
|
use App\Models\Category;
|
||
|
use Illuminate\Http\Request;
|
||
|
|
||
|
class CategoryController extends Controller
|
||
|
{
|
||
|
/**
|
||
|
* Display a listing of the resource.
|
||
|
*
|
||
|
* @return \Illuminate\Http\Response
|
||
|
*/
|
||
|
public function index()
|
||
|
{
|
||
|
return inertia('Category/Index', [
|
||
|
'categories' => Category::paginate(),
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Store a newly created resource in storage.
|
||
|
*
|
||
|
* @param \Illuminate\Http\Request $request
|
||
|
* @return \Illuminate\Http\Response
|
||
|
*/
|
||
|
public function store(Request $request)
|
||
|
{
|
||
|
$request->validate([
|
||
|
'name' => 'required|string|max:255',
|
||
|
'short' => 'required|string|max:255',
|
||
|
'duration' => 'required|numeric'
|
||
|
]);
|
||
|
|
||
|
Category::create([
|
||
|
'name' => $request->name,
|
||
|
'short' => $request->short,
|
||
|
'duration' => $request->duration,
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Update the specified resource in storage.
|
||
|
*
|
||
|
* @param \Illuminate\Http\Request $request
|
||
|
* @param int $id
|
||
|
* @return \Illuminate\Http\Response
|
||
|
*/
|
||
|
public function update(Request $request, Category $category)
|
||
|
{
|
||
|
$request->validate([
|
||
|
'name' => 'required|string|max:255',
|
||
|
'short' => 'required|string|max:255',
|
||
|
'duration' => 'required|numeric'
|
||
|
]);
|
||
|
|
||
|
$category->update([
|
||
|
'name' => $request->name,
|
||
|
'short' => $request->short,
|
||
|
'duration' => $request->duration,
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Remove the specified resource from storage.
|
||
|
*
|
||
|
* @param int $id
|
||
|
* @return \Illuminate\Http\Response
|
||
|
*/
|
||
|
public function destroy(Category $category)
|
||
|
{
|
||
|
$category->delete();
|
||
|
}
|
||
|
}
|