File "FeesRepository.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/Fees/FeesRepository.php
File size: 266 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\Fees;

use App\Models\Fee;
use App\Repositories\Saas\SaaSRepository;

class FeesRepository extends SaaSRepository implements FeesInterface {
    public function __construct(Fee $model) {
        parent::__construct($model);
    }
}