123456789101112131415161718192021222324 |
- <?php
- namespace App\Repositories\Presenters\School;
- use App\Repositories\Presenters\BasePresenter;
- use App\Repositories\Transformers\School\LessonScheduleTransformer;
- class LessonSchedulePresenter extends BasePresenter
- {
-
- public function getTransformer($type = 'lists')
- {
- return new LessonScheduleTransformer($type);
- }
- }
|