Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
admin_panel
/
app
/
Http
/
Resources
:
TimetableCollection.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace App\Http\Resources; use Illuminate\Http\Request; use Illuminate\Http\Resources\Json\ResourceCollection; use Carbon\Carbon; class TimetableCollection extends ResourceCollection { /** * Transform the resource collection into an array. * * @param Request $request * @return array */ public function toArray($request) { $response = array(); $settings = getSchoolSettings(); $date_format = $settings['date_format'] ?? 'Y-m-d'; $time_format = $settings['time_format'] ?? 'H:i:s'; foreach ($this->collection as $key => $row) { $formatted_start_time = Carbon::parse($row['start_time'])->format($time_format); $formatted_end_time = Carbon::parse($row['end_time'])->format($time_format); $response[$key] = array( "start_time" => $formatted_start_time, "end_time" => $formatted_end_time, "day" => $row['day'], "subject" => $row->subject, "teacher_first_name" => $row['subject_teacher'] ? $row['subject_teacher']['teacher']['first_name'] ?? "" : "", "teacher_last_name" => $row['subject_teacher'] ? $row['subject_teacher']['teacher']['last_name'] ?? "" : "", "note" => $row['note'] ); } return $response; } }