@extends('layouts.app', ['page' => __('Listado De Cotizaciones'), 'pageSlug' => 'estimates', 'section' => 'estimates']) @section('content') @component('components.searchBar', ['fields' => $fields , 'action' => route('estimations.by.prospect',$prospect), 'search' => $search]) @endcomponent
| {{ __('Id') }} | {{ __('Prospecto') }} | {{ __('Email') }} | {{ __('Unidad') }} | {{ __('Precio') }} | {{ __('Estatus') }} | {{ __('Origen') }} | {{ __('Vendedor') }} | {{ __('Fecha') }} | @foreach ($estimates as $estimate) |
|---|---|---|---|---|---|---|---|---|---|
| {{ $estimate->id }} |
{{ $estimate->prospect->name ?? 'N/A' }} |
{{ $estimate->prospect->email ?? 'N/A' }} |
{{ $estimate->unit->name ?? 'N/A' }} |
{{ $estimate->list_price_str }} |
{{ $estimate->status }} |
{{ $estimate->origin }} |
{{ $estimate->assignedTo->name ?? 'N/A' }} |
{{ $estimate->created_at->format('d/m/Y') }} |