@extends('layouts.app')
@section('title', 'Deals')
@section('content')
| Deal | Stage | Amount | Weighted | Close | Owner |
|---|---|---|---|---|---|
| {{ $deal->name }} @if ($deal->company){{ $deal->company->name }}@endif | {{ money((float) $deal->amount, (string) $deal->currency) }} | {{ money($deal->weightedAmount(), (string) $deal->currency) }} | {{ $deal->expected_close_date?->format('d M Y') ?? '—' }} | {{ $deal->owner?->name ?? '—' }} |