/
ghx
/
TicketFlow
Обзор
Документация
Войти
/
ghx
/
TicketFlow
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
app/Http/Controllers/SeatController.php
65 строк
1 KB
osnov
.
26 июн 2026, 11:56
26 июн 2026, 11:56
dc2de34
Код
Авторство
О чём код?
<?php namespace App\Http\Controllers; use App\Models\Seat; use Illuminate\Http\Request; class SeatController 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(Request $request) { // } /** * Display the specified resource. */ public function show(Seat $seat) { // } /** * Show the form for editing the specified resource. */ public function edit(Seat $seat) { // } /** * Update the specified resource in storage. */ public function update(Request $request, Seat $seat) { // } /** * Remove the specified resource from storage. */ public function destroy(Seat $seat) { // } }