File "TimetableCollection.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Http/Resources/TimetableCollection.php
File size: 1.39 KB
MIME-type: text/x-php
Charset: utf-8
<?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;
}
}