first commit

This commit is contained in:
ExtraNetwork
2026-05-12 17:04:54 +03:00
commit e5c4b6aa13
1425 changed files with 284735 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Core\Repository\PropertyWeb;
use App\Core\Repository\EleqouentAbstractRepository;
use App\Models\PropertyWebComponentMapping;
class PropertyWebComponentMappingRepository extends EleqouentAbstractRepository
{
private $propertyWebComponentMapping;
public function __construct(PropertyWebComponentMapping $propertyWebComponentMapping)
{
parent::__construct();
$this->propertyWebComponentMapping = $propertyWebComponentMapping;
$this->defaultModel = $this->propertyWebComponentMapping;
}
}

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Core\Repository\PropertyWeb;
use App\Core\Repository\EleqouentAbstractRepository;
use App\Models\PropertyWebComponent;
class PropertyWebComponentRepository extends EleqouentAbstractRepository
{
private $propertyWebComponent;
public function __construct(PropertyWebComponent $propertyWebComponent)
{
parent::__construct();
$this->propertyWebComponent = $propertyWebComponent;
$this->defaultModel = $this->propertyWebComponent;
}
}

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Core\Repository\PropertyWeb;
use App\Core\Repository\EleqouentAbstractRepository;
use App\Models\PropertyWebGroup;
class PropertyWebGroupRepository extends EleqouentAbstractRepository
{
private $propertyWebGroup;
public function __construct(PropertyWebGroup $propertyWebGroup)
{
parent::__construct();
$this->propertyWebGroup = $propertyWebGroup;
$this->defaultModel = $this->propertyWebGroup;
}
}

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Core\Repository\PropertyWeb;
use App\Models\PropertyWebMetaMapping;
use App\Core\Repository\EleqouentAbstractRepository;
class PropertyWebMetaMappingRepository extends EleqouentAbstractRepository
{
private $propertyWebMetaMapping;
public function __construct(PropertyWebMetaMapping $propertyWebMetaMapping)
{
parent::__construct();
$this->propertyWebMetaMapping = $propertyWebMetaMapping;
$this->defaultModel = $this->propertyWebMetaMapping;
}
}

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Core\Repository\PropertyWeb;
use App\Models\PropertyWebMeta;
use App\Core\Repository\EleqouentAbstractRepository;
class PropertyWebMetaRepository extends EleqouentAbstractRepository
{
private $propertyWebMeta;
public function __construct(PropertyWebMeta $propertyWebMeta)
{
parent::__construct();
$this->propertyWebMeta = $propertyWebMeta;
$this->defaultModel = $this->propertyWebMeta;
}
}

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Core\Repository\PropertyWeb;
use App\Models\PropertyWebMetaTag;
use App\Core\Repository\EleqouentAbstractRepository;
class PropertyWebMetaTagRepository extends EleqouentAbstractRepository
{
private $propertyWebMetaTag;
public function __construct(PropertyWebMetaTag $propertyWebMetaTag)
{
parent::__construct();
$this->propertyWebMetaTag = $propertyWebMetaTag;
$this->defaultModel = $this->propertyWebMetaTag;
}
}

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Core\Repository\PropertyWeb;
use App\Models\PropertyWeb;
use App\Core\Repository\EleqouentAbstractRepository;
class PropertyWebRepository extends EleqouentAbstractRepository
{
private $propertyWeb;
public function __construct(PropertyWeb $propertyWeb)
{
parent::__construct();
$this->propertyWeb = $propertyWeb;
$this->defaultModel = $this->propertyWeb;
}
}

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Core\Repository\PropertyWeb;
use App\Core\Repository\EleqouentAbstractRepository;
use App\Models\PropertyWebReview;
class PropertyWebReviewRepository extends EleqouentAbstractRepository
{
private $model;
public function __construct(PropertyWebReview $model)
{
parent::__construct();
$this->model = $model;
$this->defaultModel = $this->model;
}
}