- Complete GGZ Ecademy Laravel backend application - RESTful API for learning products, members, filters - Authentication and authorization system - Database migrations and seeders - Custom CRUD generator commands - Email notification system - Integration with frontend applications
This commit is contained in:
44
app/Http/Controllers/ChecklistVersionController.php
Normal file
44
app/Http/Controllers/ChecklistVersionController.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Http\Requests\ChecklistVersionRequest;
|
||||
use App\Services\ChecklistVersionService;
|
||||
|
||||
class ChecklistVersionController extends Controller
|
||||
{
|
||||
|
||||
private $checklistversionService;
|
||||
|
||||
public function __construct(ChecklistVersionService $checklistversionService)
|
||||
{
|
||||
$this->checklistversionService = $checklistversionService;
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
$checklistversions = $this->checklistversionService->getAll();
|
||||
|
||||
return response()->json($checklistversions, 201);
|
||||
}
|
||||
|
||||
public function store(ChecklistVersionRequest $request)
|
||||
{
|
||||
$checklistversion = $this->checklistversionService->save($request->all());
|
||||
|
||||
return response()->json($checklistversion, 201);
|
||||
}
|
||||
|
||||
public function show($id)
|
||||
{
|
||||
$checklistversion = $this->checklistversionService->get($id);
|
||||
|
||||
return response()->json($checklistversion);
|
||||
}
|
||||
|
||||
public function destroy($id)
|
||||
{
|
||||
$this->checklistversionService->delete($id);
|
||||
return response()->json(null, 204);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user