Learner\Http\Controllers\Admin\BlogController::togglePublished PHP Method

togglePublished() public method

admin/blogs/togglePublished/{id} put
public togglePublished ( integer $id ) : Illuminate\Http\JsonResponse
$id integer
return Illuminate\Http\JsonResponse
    public function togglePublished($id)
    {
        if ($this->blogs->togglePublished($id)) {
            $message = '博客发布成功';
        } else {
            $message = '博客已保存';
        }
        return $this->responseJson(compact('message'));
    }