File "SubjectRepository.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/SchoolSetting/SubjectRepository.php
File size: 295 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\Subject;

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

class SubjectRepository extends SaaSRepository implements SubjectInterface {

    public function __construct(Subject $model) {
        parent::__construct($model, 'subject');
    }
}