Owl\Repositories\Fluent\TagRepository::getByName PHP Method

getByName() public method

get a tag by tag name.
public getByName ( string $name ) : void
$name string
return void
    public function getByName($name)
    {
        return \DB::table($this->getTableName())->where($this->getTableName() . '.name', $name)->first();
    }