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