'; if ($this->deleted_at == '') { $actions .= Helper::generateDatatableButton('clone', route('clone/model', $this->id)); $actions .= Helper::generateDatatableButton('edit', route('models.edit', $this->id)); $actions .= Helper::generateDatatableButton( 'delete', route('models.destroy', $this->id), trans('admin/models/message.delete.confirm'), $this->name ); } else { $actions .= Helper::generateDatatableButton('restore', route('restore/model', $this->id)); } $actions .=""; $results = []; $results['id'] = $this->id; $results['manufacturer'] = $this->manufacturerUrl(); $results['name'] = $this->nameUrl(); $results['image'] = $this->imageUrl(); $results['model_number'] = $this->model_number; $results['numassets'] = $this->assets()->count(); $results['depreciation'] = trans('general.no_depreciation'); if (($depreciation = $this->model->depreciation) and $depreciation->id > 0) { $results['depreciation'] = $depreciation->name.' ('.$depreciation->months.')'; } $results['category'] = $this->categoryUrl(); $results['eol'] = $this->eolText(); $results['note'] = $this->note(); $results['fieldset'] = $this->model->fieldset ? link_to_route('custom_fields/model', $this->model->fieldset->name, $this->model->fieldset->id) : ''; $results['actions'] = $actions; return $results; } /** * Formatted note for this model * @return string */ public function note() { $Parsedown = new \Parsedown(); if ($this->model->note) { return $Parsedown->text($this->model->note); } } public function eolText() { if ($this->eol) { return $this->eol.' '.trans('general.months'); } return ''; } /** * Pretty name for this model * @return string */ public function modelName() { $name = $this->model->manufacturer->name.' '.$this->name; if ($this->model_number) { $name .=" / ".$this->model_number; } return $name; } /** * Standard url for use to view page. * @return string */ public function nameUrl() { return (string) link_to_route('models.show', $this->name, $this->id); } /** * Generate img tag to this models image. * @return string */ public function imageUrl() { if (!empty($this->image)) { return ''; } return ''; } /** * Url to view this item. * @return string */ public function viewUrl() { return route('models.show', $this->id); } }