Línea 872... |
Línea 872... |
872 |
$item = [
|
872 |
$item = [
|
873 |
'id' => $record['uuid'],
|
873 |
'id' => $record['uuid'],
|
874 |
'title' => $record['title'],
|
874 |
'title' => $record['title'],
|
875 |
'employment_type' => $employment_types[$record['employment_type']],
|
875 |
'employment_type' => $employment_types[$record['employment_type']],
|
876 |
'last_date_of_application' => $record['last_date_of_application'],
|
876 |
'last_date_of_application' => $record['last_date_of_application'],
|
877 |
'image' => $this->url()->fromRoute('storage', ['type' => 'company', 'code' => $record['comp_uuid'], 'filename' => $record['image']]),
|
877 |
'image' => $this->url()->fromRoute('storage', ['type' => 'company', 'code' => $record['comp_uuid'], 'filename' => $record['image']],['force_canonical' => true]),
|
878 |
'link_remove' => $this->url()->fromRoute('job/remove-save-job', ['id' => $record['uuid'] ]),
|
878 |
'link_remove' => $this->url()->fromRoute('job/remove-save-job', ['id' => $record['uuid'] ]),
|
879 |
'link_view' => $this->url()->fromRoute('job/view', ['id' => $record['uuid'] ]),
|
879 |
'link_view' => $this->url()->fromRoute('job/view', ['id' => $record['uuid'] ]),
|
880 |
];
|
880 |
];
|
Línea 881... |
Línea 881... |
881 |
|
881 |
|