@extends('layout.main') @section('content') {{__('Edit Invoice')}} {{__('Invoice Number')}} {{trans('file.Project')}} trans('file.Project')])}}...'> @foreach($projects as $project) project_id == $project->id) ? "selected" : '' }}>{{$project->title}} @endforeach {{__('Invoice Date')}} {{__('Due Date')}} @foreach($invoice_items as $invoice_item) {{trans('file.Item')}} {{trans('file.Qty')}} {{__('Unit Price')}} {{__('Tax Type')}} {{__('Tax Type')}} @foreach($tax_types as $tax_type) @if($tax_type->type == 'fixed') item_tax_type == '$'.$tax_type->rate) ? "selected" : '' }}>{{$tax_type->name}} (${{$tax_type->rate}}) @else item_tax_type == $tax_type->rate) ? "selected" : '' }}>{{$tax_type->name}} ({{$tax_type->rate}}%) @endif @endforeach {{trans('file.Tax')}} {{__('Sub Total')}} 0 @endforeach {{__('Add Item')}} {{__('Sub Total')}} $ {{$invoice->sub_total}} {{trans('file.TAX')}} $ {{$invoice->total_tax}} {{__('Discount Type')}} {{trans('file.Discount')}} {{__('Discount Amount')}} {{trans('file.Flat')}} {{trans('file.Percent')}} {{__('Grand Total')}} $ {{ $invoice->grand_total }} {{__('Invoice Note')}} {{ $invoice->invoice_note }} @endsection @push('scripts') @endpush
0