@extends('layouts.syndron.app')
@section('content')
{{ __('Customer Name') }}: {{ $preInvoice->customer_name }}
{{ __('Company Name') }}: {{ $preInvoice->company_name }}
{{ __('Email') }}: {{ $preInvoice->email }}
{{ __('Phone') }}: {{ $preInvoice->phone }}
{{ __('Address') }}: {{ $preInvoice->address }}
{{ __('City') }}: {{ $preInvoice->city }} | {{ __('Postal Code') }}: {{ $preInvoice->postal_code }}
| {{ __('Product') }} | {{ __('SKU') }} | {{ __('Qty') }} | {{ __('Unit') }} | {{ __('Estimated Price') }} | {{ __('Subtotal') }} | {{ __('View Link') }} |
|---|---|---|---|---|---|---|
|
{{ $item->name }}
@if($item->description)
{{ $item->description }} @endif |
{{ $item->sku }} | {{ $item->qty }} | {{ $item->unit }} | {{ number_format($item->estimated_price) }} | {{ number_format($item->subtotal) }} | {{ __('visit') }} |
| {{ __('Product') }} | {{ __('Qty') }} | {{ __('Price') }} | {{ __('Delivery Time') }} | {{ __('Subtotal') }} |
|---|---|---|---|---|
| {{ $quoteItem->preInvoiceItem->name ?? 'N/A' }} | {{ $quoteItem->qty }} | {{ $quote->currency }} {{ number_format($quoteItem->price) }} | {{ $quoteItem->delivery_time ?? 'N/A' }} | {{ $quote->currency }} {{ number_format($quoteItem->subtotal) }} |
{{ $quote->terms }}
{{ $quote->notes }}
| {{ __('Product') }} | {{ __('Qty') }} | {{ __('Price') }} | {{ __('Delivery Time') }} | {{ __('Subtotal') }} |
|---|---|---|---|---|
| {{ $quoteItem->preInvoiceItem->name ?? 'N/A' }} | {{ $quoteItem->qty }} | {{ $quote->currency }} {{ number_format($quoteItem->price) }} | {{ $quoteItem->delivery_time ?? 'N/A' }} | {{ $quote->currency }} {{ number_format($quoteItem->subtotal) }} |
{{ $quote->terms }}
{{ $quote->notes }}
{{ $preInvoice->notes }}