PATH:
home
/
lab2454c
/
costbloc.com
/
app
/
Http
/
Resources
<?php /** * @package AttributeDetailResource * @author TechVillage <support@techvill.org> * @contributor Sakawat Hossain Rony <[sakawat.techvill@gmail.com]> * @created 26-10-2021 */ namespace App\Http\Resources; use Illuminate\Http\Resources\Json\JsonResource; class AttributeDetailResource extends JsonResource { /** * Transform the resource into an array. * * @param \Illuminate\Http\Request $request * @return array */ public function toArray($request) { $attributeValue = []; foreach ($this->attributeValue as $value) { $attributeValue = [ "id" => $value->id, "value" => $value->value, "order_by" => $value->order_by, "status" => $value->status ]; } return [ 'id' => $this->id, 'name' => $this->name, 'attribute_group' => ['id' => $this->attribute_group_id, 'name' => optional($this->attributeGroup)->name], 'category' => ['id' => $this->category_id, 'name' => optional($this->category)->name], 'description' => $this->description, 'type' => ucwords(str_replace("_"," ",$this->type)), 'status' => $this->status, 'is_required' => $this->is_required == 1 ? __('Yes') : __('No'), 'is_filterable' => $this->is_filterable == 1 ? __('Yes') : __('No'), 'created_at' => $this->format_created_at, 'values' => $attributeValue, ]; } }
[-] CurrencyResource.php
[edit]
[-] TopSellerResource.php
[edit]
[-] CategoryResource.php
[edit]
[-] BrandResource.php
[edit]
[+]
..
[-] VendorDetailResource.php
[edit]
[-] CategoryDetailResource.php
[edit]
[-] AjaxCurrencyResource.php
[edit]
[-] ProductReviewResource.php
[edit]
[-] ProductFilterResource.php
[edit]
[-] VariationResource.php
[edit]
[-] WalletResource.php
[edit]
[-] RecentSearchResource.php
[edit]
[-] AttributeGroupDetailResource.php
[edit]
[-] UserAddressesResource.php
[edit]
[-] MailTemplateResource.php
[edit]
[-] RoleDetailResource.php
[edit]
[-] OrderStatusResource.php
[edit]
[-] userDetailResource.php
[edit]
[-] BrandDetailResource.php
[edit]
[-] VendorResource.php
[edit]
[-] AttributeResource.php
[edit]
[-] TagResource.php
[edit]
[-] AttributeDetailResource.php
[edit]
[-] CurrencyDetailResource.php
[edit]
[-] AjaxSelectSearchResource.php
[edit]
[-] UserResource.php
[edit]
[-] MailTemplateDetailResource.php
[edit]
[+]
Order
[-] ProductResource.php
[edit]
[-] RelatedProductResource.php
[edit]
[-] ProductDetailResource.php
[edit]
[-] WishlistResource.php
[edit]
[-] AttributeGroupResource.php
[edit]
[-] ReviewResource.php
[edit]
[-] RoleResource.php
[edit]