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