Файловый менеджер - Редактировать - /home/clickysoft/public_html/benchexc.clickysoft.net/app/Http/Controllers/Api/NeededTalentController.php
Назад
<?php namespace App\Http\Controllers\Api; use App\Http\Controllers\Controller; use App\Interfaces\NeededTalentRepositoryInterface; use Illuminate\Http\Request; class NeededTalentController extends Controller { protected NeededTalentRepositoryInterface $neededTalentRepository; public function __construct(NeededTalentRepositoryInterface $neededTalentRepository){ return $this->neededTalentRepository = $neededTalentRepository; } public function create(Request $request) { return $this->neededTalentRepository->createNeedTalent($request); } public function index() { return $this->neededTalentRepository->viewMyRequest(); } public function update(Request $request,$id) { return $this->neededTalentRepository->updateMyRequest($request,$id); } public function destroy(Request $request,$id) { return $this->neededTalentRepository->destroyTalent($id,$request); } public function getAllRequest() { return $this->neededTalentRepository->getAllRequestTalent(); } public function view(Request $request,$id) { return $this->neededTalentRepository->viewResource($id,$request); } public function changeStatus(Request $request,$id) { return $this->neededTalentRepository->changeStatus($request,$id); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка