wyyl/beike/Admin/Http/Resources/TaxClassDetail.php

31 lines
853 B
PHP

<?php
/**
* TaxClassDetail.php
*
* @copyright 2022 beikeshop.com - All Rights Reserved
* @link https://beikeshop.com
* @author Edward Yang <yangjin@guangda.work>
* @created 2022-08-12 15:56:28
* @modified 2022-08-12 15:56:28
*/
namespace Beike\Admin\Http\Resources;
use Illuminate\Http\Resources\Json\JsonResource;
class TaxClassDetail extends JsonResource
{
public function toArray($request): array
{
return [
'id' => $this->id,
'title' => $this->title,
'description' => sub_string($this->description),
'created_at' => time_format($this->created_at),
'updated_at' => time_format($this->updated_at),
'tax_rates' => $this->taxRates->toArray(),
'tax_rules' => $this->taxRules->toArray(),
];
}
}