File "StudentSubjectRepository.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/StudentSubject/StudentSubjectRepository.php
File size: 318 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\StudentSubject;

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

class StudentSubjectRepository extends SaaSRepository implements StudentSubjectInterface {
    public function __construct(StudentSubject $model) {
        parent::__construct($model);
    }
}