| 123456789101112131415161718192021222324252627 |
- <?php
- namespace App\Http\Resources;
- use Illuminate\Http\Request;
- use Illuminate\Http\Resources\Json\JsonResource;
- class DashboardPrestadorResource extends JsonResource
- {
- /**
- * Transform the resource into an array.
- *
- * @return array<string, mixed>
- */
- public function toArray(Request $request): array
- {
- return [
- 'headerBar' => $this['headerBar'],
- 'summaryInfos' => $this['summaryInfos'],
- 'priceSuggested' => $this['priceSuggested'],
- 'todayServices' => $this['todayServices'],
- 'solicitations' => $this['solicitations'],
- 'nextSchedules' => $this['nextSchedules'],
- 'opportunities' => $this['opportunities'],
- ];
- }
- }
|