D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
school.dentostock.com
/
app
/
Http
/
Resources
/
v2
/
Filename :
LessonPlanResource.php
back
Copy
<?php namespace App\Http\Resources\v2; use App\SmGeneralSettings; use App\SmStudent; use App\SmWeekend; use Illuminate\Http\Request; use Illuminate\Http\Resources\Json\JsonResource; use Carbon\Carbon; use Carbon\CarbonPeriod; class LessonPlanResource extends JsonResource { /** * Transform the resource into an array. * * @return array<string, mixed> */ public function toArray(Request $request): array { return [ 'day' => (int)$this->day, 'start_time' => (string)date('h:i A', strtotime(@$this->start_time)), 'end_time' => (string)date('h:i A', strtotime(@$this->end_time)), 'subject_name' => (string)@$this->subjectApi->subject_name, 'subject_code' => (string)@$this->subjectApi->subject_code, 'room' => (string)$this->classRoomApi->room_no, 'teacher' => (string)$this->teacherDetailApi->full_name, ]; } }