@extends('layouts.app') @section('page-title')

{{ __($pageTitle) }}

@endsection @push('head-script') @endpush @section('content')
@lang('modules.estimates.duplicateEstimate')
{!! Form::open(['id'=>'updatePayments','class'=>'ajax-form','method'=>'POST']) !!}
{{ $invoiceSetting->estimate_prefix }}#{{ $zero }}

@lang('modules.invoices.item')
@if($invoiceSetting->hsn_sac_code_show)
@lang('modules.invoices.hsnSacCode')
@endif
@lang('modules.invoices.qty')
@lang('modules.invoices.unitPrice')
@lang('modules.invoices.tax')
@lang('modules.invoices.amount')
 
@foreach($estimate->items as $key => $item)
@if($invoiceSetting->hsn_sac_code_show)
@endif

{{ number_format((float)$item->amount, 2, '.', '') }}

@endforeach
@lang('modules.invoices.subTotal')

{{ number_format((float)$estimate->sub_total, 2, '.', '') }}

@lang('modules.invoices.discount')
@lang('modules.invoices.tax')

0

@lang('modules.invoices.total')

{{ number_format((float)$estimate->total, 2, '.', '') }}

{!! Form::close() !!}
{{--Ajax Modal--}} {{--Ajax Modal Ends--}} @endsection @push('footer-script') {{----}} @endpush