File "SubscriptionBillPaymentRepository.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/SubscriptionBillPayment/SubscriptionBillPaymentRepository.php
File size: 367 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories\SubscriptionBillPayment;
use App\Models\SubscriptionBillPayment;
use App\Repositories\Saas\SaaSRepository;
class SubscriptionBillPaymentRepository extends SaaSRepository implements SubscriptionBillPaymentInterface
{
public function __construct(SubscriptionBillPayment $model)
{
parent::__construct($model);
}
}