19 lines
334 B
PHP
19 lines
334 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Webkul\Attribute\Repositories;
|
||
|
|
|
||
|
|
use Webkul\Core\Eloquent\Repository;
|
||
|
|
|
||
|
|
class AttributeOptionTranslationRepository extends Repository
|
||
|
|
{
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Specify Model class name
|
||
|
|
*
|
||
|
|
* @return mixed
|
||
|
|
*/
|
||
|
|
function model()
|
||
|
|
{
|
||
|
|
return 'Webkul\Attribute\Contracts\AttributeOptionTranslation';
|
||
|
|
}
|
||
|
|
}
|