{{ $invoice->name }}
@forelse($invoice->invoiceClients->pluck('name') as $client) {{$loop->first ? '':', '}} {{$client}} @empty {{ __('messages.common.n/a') }} @endforelse
{{ __('messages.invoice.invoice_prefix') }}{{ $invoice->invoice_number }}
@forelse($invoice->invoiceProjects->pluck('name') as $project) {{$loop->first ? '':', '}} {{$project}} @empty {{ __('messages.common.n/a') }} @endforelse
{{ isset($invoice->tax_id) ? $invoice->tax->name.'('.$invoice->tax->tax.'%)' : 'N/A' }}
{!! isset($invoice->notes) ? nl2br(e($invoice->notes)) : 'N/A' !!}
| {{ __('messages.time_entry.task') }} | {{ __('messages.invoice.hours') }} | {{ __('messages.invoice.task_amount') }} | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ isset($item->item_name) ? $item->item_name : '' }} | {{ isset($item->hours) ? $item->hours : '0.0' }} | @if($item->task_amount != '0') @endif {{ ($item->task_amount != '0') ? number_format($item->task_amount, 2) : __('messages.invoice.fix_rate') }} | ||||||||||||||
|
||||||||||||||||