Learner\Repositories\Eloquent\BlogRepository::togglePublished PHP Method

togglePublished() public method

Change blog's published status.
public togglePublished ( integer $id ) : boolean
$id integer
return boolean
    public function togglePublished($id)
    {
        $blog = $this->findById($id);
        $blog->is_published = !$blog->is_published;
        $blog->save();
        return $blog->is_published;
    }