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