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