@extends('layouts.app') @section('css') @endsection @section('content')
{{ csrf_field() }}
{{ __('Quotation') }} >> {{ __('Edit quotation') }}
{{ __('Items') }}
  • {{ __('No record found') }}
{{ __('Add Custom Item') }}
@php $count = 1; @endphp @foreach($invoiceData->saleOrderDetails as $result) @php $count++; $stack[] = $result->item_id; @endphp @endforeach
{{ __('Items') }} {{ __('HSN') }} {{ __('Quantity') }} {{ __('Hours') }} {{ __('Price') }} ({{ $invoiceData->customer_id != 0 && isset($invoiceData->customer->currency->symbol) ? $invoiceData->customer->currency->symbol : $default_currency_symbol->symbol }}) {{ __('Rate') }} ({{ $invoiceData->customer_id != 0 && isset($invoiceData->customer->currency->symbol) ? $invoiceData->customer->currency->symbol : $default_currency_symbol->symbol }}) {{ __('Amount') }} ({{ $invoiceData->customer_id != 0 && isset($invoiceData->customer->currency->symbol) ? $invoiceData->customer->currency->symbol : $default_currency_symbol->symbol }}) {{ __('Discount') }} {{ __('Tax') }} {{ __('Amount') }} ({{ isset($invoiceData->currency->symbol) ? $invoiceData->currency->symbol : ''}}) {{ __('Action') }}
@foreach($taxTypeList as $value) @endforeach 0
@foreach(json_decode($taxes) as $tax) @endforeach
{{ __('Sub Total') }} 0
{{ $tax->name }} {{ formatCurrencyAmount($tax->tax_rate) }}% 0
{{ __('Total Tax') }} 0
{{ __('Item Discounts') }} 0
{{ __('Other Discounts') }} 0
{{ __('Shipping') }} {{ !empty($invoiceData->shipping_charge) ? formatCurrencyAmount($invoiceData->shipping_charge) : 0 }}
{{ !empty($invoiceData->custom_charge_amount) ? formatCurrencyAmount($invoiceData->custom_charge_amount) : 0 }}
{{ __('Total') }} 0
{{ __('Files') }}
@forelse($files as $file)

@empty @endforelse
{{ __('Note') }}! {{ __('Allowed File Extensions: jpg, png, gif, docx, xls, xlsx, csv and pdf') }}
{{ __('Cancel') }}
@include('admin.invoice.setting-modal') @endsection @section('js') {!! translateValidationMessages() !!} @endsection