I am getting 404 error in postman with post method in laravel
I used post method in laravel still getting error 404. Here is my code: TaskController.php public function changeStatus(Request $request, $id) { try { DB::beginTransaction(); $task = Task::find($id); if (!$task) { return Helper::error(__('messages.task_not_found'), 404); } $input = $request->all(); $validator = Validator::make($input,…