Make client clickable on project form
This commit is contained in:
parent
33a0187a4d
commit
6a2ad59de1
2 changed files with 2 additions and 2 deletions
|
|
@ -29,7 +29,7 @@
|
|||
|
||||
@if ($project)
|
||||
{!! Former::plaintext('client_name')
|
||||
->value($project->client ? $project->client->getDisplayName() : '') !!}
|
||||
->value($project->client ? $project->client->present()->link : '') !!}
|
||||
@else
|
||||
{!! Former::select('client_id')
|
||||
->addOption('', '')
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@
|
|||
@if ($task && $task->invoice_id)
|
||||
{!! Former::plaintext()
|
||||
->label('client')
|
||||
->value($task->client->getDisplayName()) !!}
|
||||
->value($task->client->present()->link) !!}
|
||||
@if ($task->project)
|
||||
{!! Former::plaintext()
|
||||
->label('project')
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue