123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- namespace App\Http\Controllers\Channel\Promotion;
- use App\Http\Controllers\Channel\BaseController;
- use App\Http\Controllers\Channel\Promotion\Transformers\OriginalGuidesTransformer;
- use App\Http\Controllers\Controller;
- use App\Modules\Promotion\Services\PromotionService;
- use DB;
- class OriginalGuidesController extends BaseController
- {
-
-
- function getPromotion0riginalGuides()
- {
- $promotionOriginalGuidesResult = PromotionService::getAllOriginalGuides();
- return response()->collection(new OriginalGuidesTransformer(), $promotionOriginalGuidesResult);
- }
- }
|