sarga/packages/Webkul/Attribute/src/Repositories/AttributeGroupRepository.php

19 lines
319 B
PHP
Raw Normal View History

2019-02-18 07:30:40 +00:00
<?php
2018-07-17 13:28:34 +00:00
namespace Webkul\Attribute\Repositories;
2019-02-18 07:30:40 +00:00
2018-07-17 13:28:34 +00:00
use Webkul\Core\Eloquent\Repository;
class AttributeGroupRepository extends Repository
{
2019-02-18 07:30:40 +00:00
2018-07-17 13:28:34 +00:00
/**
* Specify Model class name
*
2022-08-10 15:10:59 +00:00
* @return string
2018-07-17 13:28:34 +00:00
*/
2022-08-10 15:10:59 +00:00
function model(): string
2018-07-17 13:28:34 +00:00
{
2019-02-18 07:30:40 +00:00
return 'Webkul\Attribute\Contracts\AttributeGroup';
2018-07-17 13:28:34 +00:00
}
}