can('viewByOwner', [ENTITY_QUOTE, $model->quote_user_id])) { return $model->quote_number; } return link_to("quotes/{$model->quote_public_id}", $model->quote_number)->toHtml(); }, ], [ 'template', function ($model) { if (! Auth::user()->can('viewByOwner', [ENTITY_PROPOSAL_TEMPLATE, $model->template_user_id])) { return $model->template; } return link_to("proposals/templates/{$model->template_public_id}/edit", $model->template)->toHtml(); }, ], [ 'created_at', function ($model) { if (! Auth::user()->can('viewByOwner', [ENTITY_PROPOSAL, $model->user_id])) { return Utils::timestampToDateString(strtotime($model->created_at)); } return link_to("proposals/{$model->public_id}/edit", Utils::timestampToDateString(strtotime($model->created_at)))->toHtml(); }, ], [ 'private_notes', function ($model) { return $this->showWithTooltip($model->private_notes); }, ], ]; } public function actions() { return [ [ trans('texts.edit_proposal'), function ($model) { return URL::to("proposals/{$model->public_id}/edit"); }, function ($model) { return Auth::user()->can('editByOwner', [ENTITY_PROPOSAL, $model->user_id]); }, ], ]; } }