@extends('layouts.app') @section('content')
{{ _lang('Update Quotation') }}
{{ csrf_field()}}
{{ _lang('Add New') }}
{{ _lang('Add New') }}
{{ _lang('Add New') }}
{{ _lang('Add New') }}
@php $currency = currency(); @endphp
@foreach($quotation->quotation_items as $item) @endforeach
{{ _lang('Name') }} {{ _lang('Quantity') }} {{ _lang('Unit Cost').' '.$currency }} {{ _lang('Discount').' '.$currency }} {{ _lang('Tax method') }} {{ _lang('Tax').' '.$currency }} {{ _lang('Sub Total').' '.$currency }} {{ _lang('Action') }}
{{ $item->item->item_name }}
{{ $item->description }}
{{ $item->quantity }} {{ $item->unit_cost }} {{ $item->discount }} {{ strtoupper($item->tax_method) }} {{ $item->tax_amount }} {{ $item->sub_total }}
{{ _lang('Total') }} 0 0.00 0.00 0.00
{{ _lang('Converted Amount') }} ({{ _lang('Client Currency') }} - {{ base_currency() }})  {{ $currency }} 0.00
@endsection @section('js-script') @endsection