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

View File

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

View File

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