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