@extends('layouts.app') @push('page-styles') @endpush @section('page-content')
{{ __('Edit Invoice') }}
@csrf @method("PUT")
{{ __('Status') }}
@if (!empty($invoice->items) && $invoice->items->count() > 0) @foreach ($invoice->items as $item) @endforeach @else @endif
{{ __('Item') }} {{ __('Description') }} {{ __('Unit Cost') }} {{ __('Qty') }} {{ __('Amount') }}
{{ __('Sub Total') }}
{{ __('Tax') }} (%)
{{ __('Discount') }} %
{{ __('Grand Total') }} {{ LocaleSettings('currency_symbol') }}
@endsection @push('page-scripts') @endpush