26 lines
517 B
PHP
26 lines
517 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class FavoriteResource extends JsonResource
|
|
{
|
|
|
|
/**
|
|
* 将资源集合转换成数组。
|
|
*
|
|
* @param \Illuminate\Http\Request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
|
|
return [
|
|
'id' => $this->followable->id,
|
|
'title' => $this->followable->title,
|
|
'created_at' => $this->created_at->format('Y年m月d日'),
|
|
];
|
|
}
|
|
}
|