19 lines
319 B
PHP
Executable File
19 lines
319 B
PHP
Executable File
<?php
|
|
|
|
namespace Webkul\Attribute\Repositories;
|
|
|
|
use Webkul\Core\Eloquent\Repository;
|
|
|
|
class AttributeGroupRepository extends Repository
|
|
{
|
|
|
|
/**
|
|
* Specify Model class name
|
|
*
|
|
* @return string
|
|
*/
|
|
function model(): string
|
|
{
|
|
return 'Webkul\Attribute\Contracts\AttributeGroup';
|
|
}
|
|
} |