| 123456789101112131415161718192021222324 |
- <?php
- namespace App\Http\Resources;
- use Illuminate\Http\Resources\Json\JsonResource;
- class SearchTitleIndexResource extends JsonResource
- {
- /**
- * Transform the resource into an array.
- *
- * @param \Illuminate\Http\Request $request
- * @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
- */
- public function toArray($request)
- {
- $data = [
- 'word'=> $this->text,
- 'count'=> 0,
- 'bold'=> 0,
- ];
- return $data;
- }
- }
|