![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/syn.corals.io/Corals/modules/Syndicate/Transformers/ |
<?php namespace Corals\Modules\Syndicate\Transformers; use Corals\Foundation\Transformers\BaseTransformer; use Corals\Modules\Syndicate\Models\Training; use Throwable; class TrainingTransformer extends BaseTransformer { public function __construct($extras = []) { $this->resource_url = config('syndicate.models.training.resource_url'); parent::__construct($extras); } /** * @param Training $traineeTraining * @return array * @throws Throwable */ public function transform(Training $traineeTraining) { $transformedArray = [ 'id' => $traineeTraining->id, 'place' => $traineeTraining->place, 'start_date' => format_date($traineeTraining->start_date), 'end_date' => format_date($traineeTraining->end_date), 'hours' => $traineeTraining->hours, 'created_at' => format_date($traineeTraining->created_at), 'updated_at' => format_date($traineeTraining->updated_at), 'action' => $this->actions($traineeTraining) ]; return parent::transformResponse($transformedArray); } }