Owl\Repositories\Eloquent\TagRepository::firstOrCreateByName PHP Method

firstOrCreateByName() public method

get a tag or Create a tag.
public firstOrCreateByName ( string $name ) : Illuminate\Database\Eloquent\Model
$name string
return Illuminate\Database\Eloquent\Model
    public function firstOrCreateByName($name)
    {
        return $this->tag->firstOrCreate(array('name' => $name))->toArray();
    }