first commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Core\Repository\PropertyGroup;
|
||||
|
||||
use App\Models\PropertyGroup;
|
||||
use App\Core\Repository\EleqouentAbstractRepository;
|
||||
|
||||
class PropertyGroupRepository extends EleqouentAbstractRepository
|
||||
{
|
||||
private $propertyGroup;
|
||||
|
||||
public function __construct(PropertyGroup $propertyGroup)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->propertyGroup = $propertyGroup;
|
||||
$this->defaultModel = $this->propertyGroup;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user