| 123456789101112131415161718192021222324 |
- <?php
- namespace App\Http\Resources;
- use Illuminate\Http\Request;
- use Illuminate\Http\Resources\Json\JsonResource;
- class ProviderBlockedDayResource extends JsonResource
- {
- public function toArray(Request $request): array
- {
- return [
- 'id' => $this->id,
- 'provider_id' => $this->provider_id,
- 'date' => $this->date?->format('Y-m-d'),
- 'period' => $this->period?->value,
- 'reason' => $this->reason,
- 'init_hour' => $this->init_hour,
- 'end_hour' => $this->end_hour,
- 'created_at' => $this->created_at,
- 'updated_at' => $this->updated_at,
- ];
- }
- }
|