Owl\Repositories\Eloquent\TemplateRepository::delete PHP Method

delete() public method

Delete a tempalte data.
public delete ( $template_id ) : boolean
$template_id int template_id
return boolean
    public function delete($template_id)
    {
        return $this->template->where('id', $template_id)->delete();
    }