芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/resources/views/expenses/edit.blade.php
@extends('layouts.app') @push('styles') @endpush @section('content')
@lang('app.estimate') @lang('app.details')
@method('PUT')
@lang('modules.estimates.estimatesNumber')
@foreach ($currencies as $currency)
currency_id == $currency->id) selected @endif value="{{ $currency->id }}"> {{ $currency->currency_code . ' (' . $currency->currency_symbol . ')' }}
@endforeach
--
@foreach ($clients as $client)
@endforeach
status == 'accepted') selected @endif value="accepted">@lang('modules.estimates.accepted')
status == 'waiting') selected @endif value="waiting">@lang('modules.estimates.waiting')
status == 'declined') selected @endif value="declined">@lang('modules.estimates.declined')
@if($estimate->status == 'draft')
status == 'draft') selected @endif value="draft">@lang('modules.invoices.draft')
@endif
{{__('app.select') . ' ' . __('app.product') }}
@foreach ($products as $item)
{{ $item->name }}
@endforeach
@foreach($estimate->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 }}">{{ $tax->tax_name }}: {{ $tax->rate_percent }}%
@endforeach
{{ number_format((float)$item->amount, 2, '.', '') }}
@endforeach
@lang('modules.invoices.addItem')
@lang('modules.invoices.subTotal')
{{ number_format((float)$estimate->sub_total, 2, '.', '') }}
@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)$estimate->discount, 2, '.', '') }}
@lang('modules.invoices.tax')
0.00
@lang('modules.invoices.total')
{{ number_format((float)$estimate->total, 2, '.', '') }}
@lang('modules.invoices.note')
{{ $estimate->note }}</textarea>
@lang('modules.invoiceSettings.invoiceTerms')
{!! nl2br($invoiceSetting->invoice_terms) !!}
@lang('app.cancel')
@lang('app.save')
@endsection @push('scripts') @endpush