@extends('layouts.app') @section('title', __('app.deals') . ' - SEU CRM') @section('content')
@if(session('success')){{ __('app.leads') }}
{{ __('app.qualified') }}
{{ __('app.proposal') }}
{{ __('app.negotiation') }}
{{ __('app.won') }}
{{ __('app.lost') }}
| {{ __('app.deal') }} | {{ __('app.customer') }} | {{ __('app.value') }} | {{ __('app.stage') }} | {{ __('app.priority') }} | {{ __('app.close_date') }} | {{ __('app.actions') }} |
|---|---|---|---|---|---|---|
{{ $deal->title }}{{ Str::limit($deal->description, 50) }} |
{{ substr($deal->customer->name, 0, 1) }}
{{ $deal->customer->name }}
|
${{ number_format($deal->value, 2) }} | {{ ucfirst(str_replace('_', ' ', $deal->stage)) }} | {{ ucfirst($deal->priority) }} | {{ $deal->expected_close_date ? $deal->expected_close_date->format('M d, Y') : __('app.not_available') }} | |
|
{{ __('app.no_deals_found') }} |
||||||