Owl\Repositories\Eloquent\TemplateRepository::getById PHP 메소드

getById() 공개 메소드

Get template data by id.
public getById ( $template_id ) : Illuminate\Database\Eloquent\Collection
$template_id int template_id
리턴 Illuminate\Database\Eloquent\Collection | Illuminate\Database\Eloquent\Builder
    public function getById($template_id)
    {
        return $this->template->where('id', $template_id)->first();
    }