2024-04-17 10:11:31 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use App\Http\Requests\SubjectPostRequest;
|
|
|
|
use App\Models\Subject;
|
2024-04-23 14:52:49 +04:00
|
|
|
use App\Services\ServiceInterface;
|
2024-04-17 10:11:31 +04:00
|
|
|
use Illuminate\Http\RedirectResponse;
|
|
|
|
use Illuminate\View\View;
|
|
|
|
|
|
|
|
class SubjectController extends Controller
|
|
|
|
{
|
2024-04-23 14:52:49 +04:00
|
|
|
public function __construct(
|
2024-05-06 17:47:25 +04:00
|
|
|
protected ServiceInterface $service,
|
2024-05-06 17:51:16 +04:00
|
|
|
) {
|
|
|
|
}
|
2024-04-23 14:52:49 +04:00
|
|
|
|
2024-04-17 10:11:31 +04:00
|
|
|
/**
|
|
|
|
* Display a listing of the resource.
|
|
|
|
*/
|
|
|
|
public function index(): View
|
|
|
|
{
|
|
|
|
return view('subjects.index', [
|
2024-05-06 17:51:16 +04:00
|
|
|
'subjects' => $this->service->getAll(),
|
2024-04-17 10:11:31 +04:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for creating a new resource.
|
|
|
|
*/
|
|
|
|
public function create(): View
|
|
|
|
{
|
|
|
|
return view('subjects.create');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a newly created resource in storage.
|
|
|
|
*/
|
|
|
|
public function store(SubjectPostRequest $request): RedirectResponse
|
|
|
|
{
|
2024-04-23 14:52:49 +04:00
|
|
|
return redirect()->route(
|
|
|
|
'subjects.show',
|
2024-05-06 17:47:25 +04:00
|
|
|
$this->service->create($request->validated())
|
2024-04-23 14:52:49 +04:00
|
|
|
);
|
2024-04-17 10:11:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the specified resource.
|
|
|
|
*/
|
|
|
|
public function show(Subject $subject): View
|
|
|
|
{
|
|
|
|
return view('subjects.show', [
|
2024-05-06 17:51:16 +04:00
|
|
|
'subject' => $subject,
|
2024-04-17 10:11:31 +04:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for editing the specified resource.
|
|
|
|
*/
|
|
|
|
public function edit(Subject $subject): View
|
|
|
|
{
|
|
|
|
return view('subjects.edit', [
|
|
|
|
'subject' => $subject,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the specified resource in storage.
|
|
|
|
*/
|
|
|
|
public function update(SubjectPostRequest $request, Subject $subject): RedirectResponse
|
|
|
|
{
|
2024-04-23 14:52:49 +04:00
|
|
|
return redirect()->route(
|
|
|
|
'subjects.show',
|
2024-05-06 17:47:25 +04:00
|
|
|
$this->service->update($subject, $request->validated())
|
2024-04-23 14:52:49 +04:00
|
|
|
);
|
2024-04-17 10:11:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the specified resource from storage.
|
|
|
|
*/
|
|
|
|
public function destroy(Subject $subject): RedirectResponse
|
|
|
|
{
|
2024-05-06 17:47:25 +04:00
|
|
|
$this->service->delete($subject);
|
2024-04-17 10:11:31 +04:00
|
|
|
|
|
|
|
return redirect()->route('subjects.index');
|
|
|
|
}
|
|
|
|
}
|