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

getAll() public method

Get all template data.
public getAll ( ) : Illuminate\Database\Eloquent\Collection
return Illuminate\Database\Eloquent\Collection | Illuminate\Database\Eloquent\Builder
    public function getAll()
    {
        return $this->template->orderBy('id', 'asc')->get();
    }