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\PropertyChannelGroup;
use App\Models\PropertyChannelGroupChannelMapping;
use App\Core\Repository\EleqouentAbstractRepository;
class PropertyChannelGroupChannelMappingRepository extends EleqouentAbstractRepository
{
private $propertyChannelGroupChannelMapping;
public function __construct(PropertyChannelGroupChannelMapping $propertyChannelGroupChannelMapping)
{
parent::__construct();
$this->propertyChannelGroupChannelMapping = $propertyChannelGroupChannelMapping;
$this->defaultModel = $this->propertyChannelGroupChannelMapping;
}
}

View File

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