whoami7 - Manager
:
/
home
/
dataiclx
/
datasyspk.com
/
app
/
Http
/
Resources
/
Upload File:
files >> /home/dataiclx/datasyspk.com/app/Http/Resources/FlashDealCollection.php
<?php namespace App\Http\Resources; use Illuminate\Http\Resources\Json\ResourceCollection; use App\Http\Resources\ProductCollection; use App\Models\FlashDeal; use App\Models\Product; class FlashDealCollection extends ResourceCollection { /** * Transform the resource collection into an array. * * @param \Illuminate\Http\Request $request * @return array */ public function toArray($request) { $flash_deal = FlashDeal::findOrFail($this->collection->first()->id); $products = collect(); foreach ($flash_deal->flashDealProducts as $key => $flash_deal_product) { if(Product::find($flash_deal_product->product_id) != null){ $products->push(Product::find($flash_deal_product->product_id)); } } return [ 'title' => $flash_deal->title, 'end_date' => $flash_deal->end_date, 'products' => new ProductCollection($products) ]; } public function with($request) { return [ 'success' => true, 'status' => 200 ]; } }
Copyright ©2021 || Defacer Indonesia