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