@extends('layout.main') @section('content') {{__('Create Invoice')}} @csrf {{__('Invoice Number')}} {{trans('file.Project')}} trans('file.Project')])}}...'> @foreach($projects as $project) {{$project->title}} @endforeach {{__('Invoice Date')}} {{__('Due Date')}} {{trans('file.Item')}} {{trans('file.Qty')}} {{__('Unit Price')}} {{__('Tax Type')}} {{__('Tax Type')}} @foreach($tax_types as $tax_type) @if($tax_type->type == 'fixed') {{$tax_type->name}}(${{$tax_type->rate}}) @else {{$tax_type->name}}({{$tax_type->rate}}%) @endif @endforeach {{__('Tax Rate')}} {{__('Sub Total')}} 0 {{__('Add Item')}} {{__('Sub Total')}} 0 {{__('Tax Rate')}} 0 {{__('Discount Type')}} {{trans('file.Discount')}} {{__('Discount Amount')}} {{trans('file.Flat')}} {{trans('file.Percent')}} {{__('Grand Total')}} 0 {{__('Invoice Note')}} @endsection @push('scripts') @endpush
0