@extends('layouts.app') @section('content')
@lang('app.menu.credit-note') @lang('app.details')
@lang('app.credit-note') #
{{ $creditNoteSetting->credit_note_prefix }}{{ $creditNoteSetting->credit_note_number_separator }}{{ $zero }}
@foreach ($currencies as $currency)
currency_id == $currency->id) selected @endif value="{{ $currency->id }}"> {{ $currency->currency_code . ' (' . $currency->currency_symbol . ')' }}
@endforeach
{{ $creditNote->client->name }}
@if ($creditNote->project)
{{ $creditNote->project->project_name }}
@else
--
@endif
{{__('app.select') . ' ' . __('app.product') }}
@foreach ($products as $item)
{{ $item->name }}
@endforeach
@foreach($creditNote->items as $key => $item)
@lang('app.description')
@lang("modules.invoices.qty")
@lang("modules.invoices.unitPrice")
@lang('modules.invoices.tax')
@lang('modules.invoices.amount')
@foreach ($taxes as $tax)
taxes) && array_search($tax->id, json_decode($item->taxes)) !== false) selected @endif value="{{ $tax->id }}">{{ strtoupper($tax->tax_name) }}: {{ $tax->rate_percent }}%
@endforeach
{{ number_format((float)$item->amount, 2, '.', '') }}
@endforeach
@lang('modules.invoices.addItem')
@lang('modules.invoices.subTotal')
0.00
@lang('modules.invoices.discount')
discount_type == 'percent') selected @endif value="percent">%
discount_type == 'fixed') selected @endif value="fixed"> @lang('modules.invoices.amount')
{{ number_format((float)$creditNote->discount, 2, '.', '') }}
@lang('modules.invoices.tax')
0.00
@lang('modules.invoices.total')
0.00
@lang('modules.invoices.note')
@lang('modules.invoiceSettings.invoiceTerms')
{!! nl2br($invoiceSetting->invoice_terms) !!}
@lang('app.cancel')
@lang('app.save')
@endsection