can('view', [ENTITY_PROPOSAL_TEMPLATE, $model])) return link_to("proposals/templates/{$model->public_id}", $model->name)->toHtml(); else return $model->name; }, ], [ 'content', function ($model) { return $this->showWithTooltip(strip_tags($model->content)); }, ], [ 'private_notes', function ($model) { return $this->showWithTooltip($model->private_notes); }, ], ]; } public function actions() { return [ [ trans('texts.edit_proposal_template'), function ($model) { return URL::to("proposals/templates/{$model->public_id}/edit"); }, function ($model) {$model->entityType = ENTITY_PROPOSAL; return Auth::user()->can('viewModel', $model) ; }, ], [ trans('texts.clone_proposal_template'), function ($model) { return URL::to("proposals/templates/{$model->public_id}/clone"); }, function ($model) { return Auth::user()->can('view', [ENTITY_PROPOSAL_TEMPLATE, $model]); }, ], [ trans('texts.new_proposal'), function ($model) { return URL::to("proposals/create/0/{$model->public_id}"); }, function ($model) { return Auth::user()->can('createEntity', ENTITY_PROPOSAL); }, ], ]; } }