@extends('layouts.app') @section('css') @endsection @section('content')
{{ csrf_field() }}
{{ __('Invoices') }} >> {{ __('Copy Invoice') }}
{{ __('Items') }}
  • {{ __('No record found') }}
{{ __('Add Custom Item') }}
@php $count=1; @endphp @foreach($invoiceData->saleOrderDetails as $result) @php $data_max = ''; $error = ""; if(isset($result->item['is_stock_managed']) && $result->item['is_stock_managed'] == 1) { $max = $result->item->stockMoves->where('location_id', $invoiceData->location_id)->sum('quantity'); $data_max = 'data-max = ' . $max; if($max < $result->quantity) { $error = "error"; } } @endphp @php $count++; $stack[] = $result->item_id; @endphp @endforeach
{{ __('Items') }} {{ __('HSN') }} {{ __('Quantity') }} {{ __('Hours') }} {{ __('Price') }} ({{ isset($invoiceData->currency->symbol) ? $invoiceData->currency->symbol : '' }}) {{ __('Rate') }} ({{ isset($invoiceData->currency->symbol) ? $invoiceData->currency->symbol : '' }}) {{ __('Amount') }} ({{ isset($invoiceData->currency->symbol) ? $invoiceData->currency->symbol : '' }}) {{ __('Discount') }} {{ __('Tax') }} {{ __('Amount') }} ({{ $invoiceData->currency->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, $currencySymbol) : 0 }}
{{ formatCurrencyAmount($invoiceData->custom_charge_amount, $currencySymbol) }}
{{ __('Total') }} 0
{{ __('Files') }}
@forelse($files->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