1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Http\Resources;
- use Illuminate\Http\Resources\Json\Resource;
- class ImageResource extends Resource
- {
- /**
- * Transform the resource into an array.
- *
- * @param \Illuminate\Http\Request $request
- * @return array
- */
- public function toArray($request)
- {
- return [
- 'id' => $this->id,
- 'type' => $this->type,
- 'path' => $this->path,
- 'user_id' => $this->user_id,
- 'created_at' => $this->created_at,
- 'updated_at' => $this->updated_at,
- ];
- }
- }
|