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