@extends('layouts.app') @section('title', __('app.deal_details') . ' - SEU CRM') @section('content')
{{ __('app.customer') }}: {{ $deal->customer->name }}
{{ __('app.value') }}: ${{ number_format($deal->value, 2) }}
{{ __('app.priority') }}: {{ $deal->priority == 'low' ? __('app.low') : ($deal->priority == 'medium' ? __('app.medium') : __('app.high')) }}
{{ __('app.expected_close_date') }}: {{ $deal->expected_close_date ? $deal->expected_close_date->format('M d, Y') : __('app.not_available') }}
{{ __('app.description') }}:
{{ $deal->description }}