@component('laravel-crm::components.card') @component('laravel-crm::components.card-header') @slot('title') {{ $lead->title }} @if($lead->pipelineStage) {{ $lead->pipelineStage->name }} @endif @endslot @slot('actions') @include('laravel-crm::partials.return-button',[ 'model' => $lead, 'route' => 'leads' ]) @hasdealsenabled @can('edit crm leads') | {{ ucfirst(__('laravel-crm::lang.convert')) }} @endcan @endhasdealsenabled @include('laravel-crm::partials.navs.activities') | @can('edit crm leads') @endcan @can('delete crm leads') @endcan @endslot @endcomponent @component('laravel-crm::components.card-body')
@include('laravel-crm::partials.labels',[ 'labels' => $lead->labels ])
{{ money($lead->amount, $lead->currency) }}
{{ $lead->description }}
{{ $lead->ownerUser->name ?? null }}
@if($lead->client){{ $lead->client->name }}@endif
@if($lead->organisation){{ $lead->organisation->name }}@endif
{{ ($address) ? \VentureDrake\LaravelCrm\Http\Helpers\AddressLine\addressSingleLine($address) : null }}
@if($lead->person){{ $lead->person->name }}@endif
@if($email){{ $email->address }} ({{ ucfirst($email->type) }})
@endif @if($phone){{ $phone->number }} ({{ ucfirst($phone->type) }})
@endif