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