Projects/3BIT/winter-semester/IIS/xnecasr00/app/Http/Controllers/TreatmentController.php
2026-04-14 19:28:46 +02:00

66 lines
1.1 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Http\Requests\StoreTreatmentRequest;
use App\Http\Requests\UpdateTreatmentRequest;
use App\Models\Treatment;
class TreatmentController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
//
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*/
public function store(StoreTreatmentRequest $request)
{
//
}
/**
* Display the specified resource.
*/
public function show(Treatment $treatment)
{
//
}
/**
* Show the form for editing the specified resource.
*/
public function edit(Treatment $treatment)
{
//
}
/**
* Update the specified resource in storage.
*/
public function update(UpdateTreatmentRequest $request, Treatment $treatment)
{
//
}
/**
* Remove the specified resource from storage.
*/
public function destroy(Treatment $treatment)
{
//
}
}