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