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