1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-02 07:04:56 +08:00
2020-08-06 20:53:30 +08:00

37 lines
733 B
PHP

<?php
namespace App\Services\Frontend\Consult;
use App\Services\Frontend\ConsultTrait;
use App\Services\Frontend\Service as FrontendService;
use App\Validators\Consult as ConsultValidator;
class ConsultReply extends FrontendService
{
use ConsultTrait;
public function handle($id)
{
$post = $this->request->getPost();
$user = $this->getLoginUser();
$consult = $this->checkConsult($id);
$validator = new ConsultValidator();
$validator->checkReplyPriv($consult, $user);
$answer = $validator->checkAnswer($post['answer']);
$consult->update([
'answer' => $answer,
'reply_time' => time(),
]);
return $consult;
}
}