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