File "StaffSupportSchoolRepository.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/StaffSupportSchool/StaffSupportSchoolRepository.php
File size: 361 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\StaffSupportSchool;

use App\Models\StaffSupportSchool;
use App\Repositories\Base\BaseRepository;

class StaffSupportSchoolRepository extends BaseRepository implements StaffSupportSchoolInterface {
    public function __construct(StaffSupportSchool $model) {
        parent::__construct($model,'staff_support_school');
    }
}