123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- namespace App\Http\Controllers\Channel\Promotion;
- use App\Http\Controllers\Channel\BaseController;
- use App\Http\Controllers\Channel\Promotion\Transformers\DocumentCoversTransformer;
- use App\Modules\Promotion\Services\PromotionService;
- use DB;
- class DocumentCoversController extends BaseController
- {
-
-
- function getPromotionDocumentCovers()
- {
- $distribution_channel_id = $this->getChannelId();
- $promotionDocumentCoversResult = PromotionService::getAllDocumentCovers($distribution_channel_id);
- return response()->collection(new DocumentCoversTransformer(), $promotionDocumentCoversResult);
- }
- }
|