File "ExtraSchoolDataRepository.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/ExtraSchoolData/ExtraSchoolDataRepository.php
File size: 323 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories\ExtraSchoolData;
use App\Models\ExtraSchoolData;
use App\Repositories\Base\BaseRepository;
class ExtraSchoolDataRepository extends BaseRepository implements ExtraSchoolDataInterface {
public function __construct(ExtraSchoolData $model) {
parent::__construct($model);
}
}