D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
ghanempharmacy.com
/
app
/
Contracts
/
Repositories
/
Filename :
ProductTagRepositoryInterface.php
back
Copy
<?php namespace App\Contracts\Repositories; use Illuminate\Support\Collection; interface ProductTagRepositoryInterface extends RepositoryInterface { /** * @param string $fieldName * @param array $filters * @return Collection|array */ public function getIds(string $fieldName='tag_id', array $filters = []): Collection|array; }