12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace App\Http\Controllers\Channel\Promotion;
- use App\Http\Controllers\Channel\BaseController;
- use App\Http\Controllers\Channel\Promotion\Transformers\PromotionPagesTransformer;
- use App\Modules\Promotion\Services\PromotionService;
- class PromotionPagesController extends BaseController
- {
-
-
- function getPromotionPages()
- {
- $promotionPagesResult = PromotionService::getAllPromotionPage();
- return response()->collection(new PromotionPagesTransformer(), $promotionPagesResult);
- }
- }
|