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