File "LessonsRepository.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/Lessons/LessonsRepository.php
File size: 281 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories\Lessons;
use App\Models\Lesson;
use App\Repositories\Saas\SaaSRepository;
class LessonsRepository extends SaaSRepository implements LessonsInterface {
public function __construct(Lesson $model) {
parent::__construct($model);
}
}