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