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