File "StudentRepository.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/Student/StudentRepository.php
File size: 289 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\Student;

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

class StudentRepository extends SaaSRepository implements StudentInterface
{
    public function __construct(Students $model)
    {
        parent::__construct($model);
    }
}