@extends('layouts.app') @section('css') @endsection @section('content')
{{ csrf_field() }}
{{ __('Invoices') }} >> {{ __('Edit Invoice') }}
@if(!empty($project_id))
@endif
{{ __('Items') }}
  • {{ __('No record found') }}
{{ __('Add Custom Item') }}
@php $count=1; @endphp @foreach($invoiceData->saleOrderDetails as $result) @php $data_max = ''; if(isset($result->item['is_stock_managed']) && $result->item['is_stock_managed'] == 1) { $max = $result->quantity + $result->item->stockMoves->where('location_id', $invoiceData->location_id)->sum('quantity'); $data_max = 'data-max = ' . $max; } @endphp @php $count++; $stack[] = $result->item_id; @endphp @endforeach
{{ __('Items') }} {{ __('HSN') }} {{ __('Quantity') }} {{ __('Hours') }} {{ __('Price') }} ({{ $invoiceData->customer_id != 0 && isset($customerData->currency->symbol) ? $customerData->currency->symbol : $default_currency_symbol->symbol }}) {{ __('Rate') }} ({{ $invoiceData->customer_id != 0 && isset($customerData->currency->symbol)? $customerData->currency->symbol : $default_currency_symbol->symbol }}) {{ __('Amount') }} ({{ $invoiceData->customer_id != 0 && isset($customerData->currency->symbol) ? $customerData->currency->symbol : $default_currency_symbol->symbol }}) {{ __('Discount') }} {{ __('Tax') }} {{ __('Amount') }} ({{ $invoiceData->customer_id != 0 && isset($customerData->currency->symbol) ? $customerData->currency->symbol : $default_currency_symbol->symbol }}) {{ __('Action') }}
@foreach($taxTypeList as $value) @endforeach 0
@foreach(json_decode($taxes) as $tax) @endforeach
{{ __('Subtotal') }} 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') }} {{ !empty($invoiceData->total) ? formatCurrencyAmount($invoiceData->total, $currencySymbol) : 0 }}
has_comment ? 'checked' : '' }}>
{{ __('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') @endsection