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