23 lines
472 B
PHP
23 lines
472 B
PHP
<?php
|
|
/**
|
|
* BrandDetail.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author TL <mengwb@opencart.cn>
|
|
* @created 2022-08-03 10:33:06
|
|
* @modified 2022-08-03 10:33:06
|
|
*/
|
|
|
|
namespace Beike\Shop\Http\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class RmaDetail extends JsonResource
|
|
{
|
|
public function toArray($request): array
|
|
{
|
|
return $this->toArray($request);
|
|
}
|
|
}
|