добавляю все изменения проекта на текущий момент

This commit is contained in:
vasya
2026-02-27 18:49:27 +03:00
parent e927910fda
commit 9c35f4e35e
303 changed files with 79434 additions and 2558 deletions
+62
View File
@@ -0,0 +1,62 @@
<?php
namespace $CLASS_NAMESPACE$;
use App\Http\Controllers\Controller;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class $CLASS$ extends Controller
{
public array $data = [];
/**
* Display a listing of the resource.
*/
public function index(): JsonResponse
{
//
return response()->json($this->data);
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request): JsonResponse
{
//
return response()->json($this->data);
}
/**
* Show the specified resource.
*/
public function show($id): JsonResponse
{
//
return response()->json($this->data);
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, $id): JsonResponse
{
//
return response()->json($this->data);
}
/**
* Remove the specified resource from storage.
*/
public function destroy($id): JsonResponse
{
//
return response()->json($this->data);
}
}