You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
628 B

<?php
namespace App\Http\Resources;
use Illuminate\Http\Resources\Json\Resource;
class Carousel extends Resource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function toArray($request)
{
return [
"businessId"=>$this->goods_id,
"type"=> $this->booth_type,
"title"=> $this->carousel_title,
"picUrl"=> config('filesystems.disks.oss.url').'/'.$this->carousel_img,
"info"=> $this->carousel_info,
"state"=> $this->state,
];
}
}