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