PATH:
home
/
lab2454c
/
costbloc.com
/
app
/
Http
/
Resources
/
Order
<?php namespace App\Http\Resources\Order; use Illuminate\Http\Resources\Json\JsonResource; class TaxResource extends JsonResource { /** * Transform the resource into an array. * * @param \Illuminate\Http\Request $request * @return array */ public function toArray($request = []) { return [ "id" => null, "rate_code" => null, "rate_id" => null, "label" => null, "compound" => null, "tax_total" => null, "shipping_tax_total" => null, ]; } }
[-] RefundResource.php
[edit]
[-] ShopResource.php
[edit]
[+]
..
[-] StatusHistoryResource.php
[edit]
[-] ShippingResource.php
[edit]
[-] OrderResource.php
[edit]
[-] TaxResource.php
[edit]
[-] ShippingAddressResource.php
[edit]
[-] VendorResource.php
[edit]
[-] ProductResource.php
[edit]
[-] BillingAddressResource.php
[edit]
[-] CouponResource.php
[edit]
[-] PaymentResource.php
[edit]