Owl\Repositories\Eloquent\TagRepository::firstOrCreateByName PHP 메소드

firstOrCreateByName() 공개 메소드

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