@extends('layouts.main') @section('title', (isset($rec->id)) ? __('form.edit_invoice') : __('form.create_new_invoice')) @section('content')
@lang('form.unbilled_tasks_and_expenses')
@lang('form.task') @lang('form.rate') @lang('form.decimal_time')/@lang('form.quantity') @lang('form.sub_total') @lang('form.action')
@{{ item.description }} @{{ item.rate }} @{{ item.quantity }} @{{ item.formatted_sub_total }} @lang('form.add_to_invoice')
{{ csrf_field() }} @if(isset($rec->id)) {{ method_field('PATCH') }} @endif @include('invoice.partials.general') @include('generic.items') @include('invoice.partials.notes') @if((isset($rec->proposal_id)) && $rec->proposal_id) @endif @if((isset($rec->estimate_id)) && $rec->estimate_id) @endif @if((isset($rec->expense_id)) && $rec->expense_id) @endif @if((isset($rec->invoicing_for_project)) && $rec->invoicing_for_project) @endif
@endsection @section('onPageJs')