Línea 904... |
Línea 904... |
904 |
$item = [
|
904 |
$item = [
|
905 |
'id' => $record['uuid'],
|
905 |
'id' => $record['uuid'],
|
906 |
'title' => $record['title'],
|
906 |
'title' => $record['title'],
|
907 |
'employment_type' => $employment_types[$record['employment_type']],
|
907 |
'employment_type' => $employment_types[$record['employment_type']],
|
908 |
'last_date_of_application' => $record['last_date_of_application'],
|
908 |
'last_date_of_application' => $record['last_date_of_application'],
|
909 |
'image' => $this->url()->fromRoute('storage', ['type' => 'company', 'code' => $record['uuid'], 'filename' => $record['image']]),
|
909 |
'image' => $this->url()->fromRoute('storage', ['type' => 'company', 'code' => $record['comp_uuid'], 'filename' => $record['image']]),
|
910 |
'link_remove' => $this->url()->fromRoute('job/remove-save-job', ['id' => $record['uuid'] ]),
|
910 |
'link_remove' => $this->url()->fromRoute('job/remove-save-job', ['id' => $record['uuid'] ]),
|
911 |
'link_view' => $this->url()->fromRoute('job/view', ['id' => $record['uuid'] ]),
|
911 |
'link_view' => $this->url()->fromRoute('job/view', ['id' => $record['uuid'] ]),
|
912 |
];
|
912 |
];
|
Línea 913... |
Línea 913... |
913 |
|
913 |
|