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