/
Shamaeva2
/
coursework.local
Обзор
Документация
Войти
/
Shamaeva2
/
coursework.local
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
app/Http/Controllers/StudentController.php
66 строк
1 KB
Шамаева Виктория Сергеевна
создание сущности студент
24 июн 2026, 11:08
24 июн 2026, 11:08
f502974
Код
Авторство
О чём код?
<?php namespace App\Http\Controllers; use App\Models\Student; use App\Http\Requests\StoreStudentRequest; use App\Http\Requests\UpdateStudentRequest; class StudentController 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(StoreStudentRequest $request) { // } /** * Display the specified resource. */ public function show(Student $student) { // } /** * Show the form for editing the specified resource. */ public function edit(Student $student) { // } /** * Update the specified resource in storage. */ public function update(UpdateStudentRequest $request, Student $student) { // } /** * Remove the specified resource from storage. */ public function destroy(Student $student) { // } }