261 lines
13 KiB
PHP
Raw Normal View History

2019-11-16 10:21:14 +03:00
@extends('layouts.signed')
@section('title', trans_choice('general.invoices', 1) . ': ' . $invoice->invoice_number)
@section('new_button')
2020-01-09 12:16:33 +03:00
<span><a href="{{ route('portal.dashboard') }}" class="btn btn-success btn-sm"><span class="fa fa-user"></span> &nbsp;{{ trans('invoices.all_invoices') }}</a></span>
2019-11-16 10:21:14 +03:00
@endsection
@section('content')
<div class="card">
2020-01-11 16:57:32 +03:00
<div class="card-header status-{{ $invoice->status_label }}">
<h3 class="text-white mb-0 float-right pr-4">{{ trans('invoices.statuses.' . $invoice->status) }}</h3>
2019-11-16 10:21:14 +03:00
</div>
<div class="card-body">
2019-12-13 18:08:07 +03:00
<div class="row mx--4">
<div class="col-md-7 border-bottom-1">
<div class="table-responsive mt-2">
2019-11-16 10:21:14 +03:00
<table class="table table-borderless">
<tbody>
<tr>
<th>
2019-11-17 17:01:26 +03:00
@if (setting('company.logo'))
<img src="{{ Storage::url(setting('company.logo')) }}" />
2019-11-16 10:21:14 +03:00
@else
<span class="avatar avatar-size rounded-circle bg-primary">
<i class="fas fa-building"></i>
</span>
@endif
</th>
</tr>
</tbody>
</table>
</div>
</div>
2019-12-13 18:08:07 +03:00
2019-11-16 10:21:14 +03:00
<div class="col-md-5 border-bottom-1">
<div class="table-responsive">
<table class="table table-borderless">
<tbody>
<tr>
<th>
{{ setting('company.name') }}
</th>
</tr>
<tr>
<th>
{{ setting('company.address') }}
</th>
</tr>
<tr>
<th>
@if (setting('company.tax_number'))
{{ trans('general.tax_number') }}: {{ setting('company.tax_number') }}<br>
@endif
</th>
</tr>
<tr>
<th>
@if (setting('company.phone'))
{{ setting('company.phone') }}<br>
@endif
</th>
</tr>
<tr>
<th>
{{ setting('company.email') }}
</th>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="row">
<div class="col-md-7">
<div class="table-responsive">
<table class="table table-borderless">
<tbody>
<tr>
<th>
{{ trans('invoices.bill_to') }}
<strong class="d-block">{{ $invoice->contact_name }}</strong>
</th>
</tr>
<tr>
<th>
{{ $invoice->contact_address }}
</th>
</tr>
<tr>
<th>
@if ($invoice->contact_tax_number)
{{ trans('general.tax_number') }}: {{ $invoice->contact_tax_number }}
@endif
</th>
</tr>
<tr>
<th>
@if ($invoice->contact_phone)
{{ $invoice->contact_phone }}<br>
@endif
</th>
</tr>
<tr>
<th>
{{ $invoice->contact_email }}
</th>
</tr>
</tbody>
</table>
</div>
</div>
<div class="col-md-5">
<div class="table-responsive">
<table class="table table-borderless">
<tbody>
<tr>
<th>{{ trans('invoices.invoice_number') }}:</th>
<td class="text-right">{{ $invoice->invoice_number }}</td>
</tr>
@if ($invoice->order_number)
<tr>
<th>{{ trans('invoices.order_number') }}:</th>
<td class="text-right">{{ $invoice->order_number }}</td>
</tr>
@endif
<tr>
<th>{{ trans('invoices.invoice_date') }}:</th>
<td class="text-right">@date($invoice->invoiced_at)</td>
</tr>
<tr>
<th>{{ trans('invoices.payment_due') }}:</th>
<td class="text-right">@date($invoice->due_at)</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
2019-12-13 18:08:07 +03:00
<div class="row show-table">
<div class="col-md-12 table-responsive">
<table class="table table-striped">
<tbody>
2019-11-16 10:21:14 +03:00
<tr>
2019-12-13 18:08:07 +03:00
<th class="pl-5">{{ trans_choice('general.items', 1) }}</th>
<th class="text-center">{{ trans('invoices.quantity') }}</th>
<th class="text-center pl-7">{{ trans('invoices.price') }}</th>
<th class="text-right pr-5">{{ trans('invoices.total') }}</th>
2019-11-16 10:21:14 +03:00
</tr>
2020-01-22 12:52:46 +03:00
@foreach($invoice->items as $invoice_item)
2019-12-13 18:08:07 +03:00
<tr>
2020-01-22 12:52:46 +03:00
<td class="pl-5">
{{ $invoice_item->name }}
@if (!empty($invoice_item->item->description))
<br><small>{!! \Illuminate\Support\Str::limit($invoice_item->item->description, 500) !!}<small>
@endif
</td>
<td class="text-center">{{ $invoice_item->quantity }}</td>
<td class="text-center pl-7">@money($invoice_item->price, $invoice->currency_code, true)</td>
<td class="text-right pr-5">@money($invoice_item->total, $invoice->currency_code, true)</td>
2019-12-13 18:08:07 +03:00
</tr>
@endforeach
</tbody>
</table>
</div>
2019-11-16 10:21:14 +03:00
</div>
2019-12-13 18:08:07 +03:00
<div class="row mt-5">
2019-11-16 10:21:14 +03:00
<div class="col-md-7">
2019-12-13 18:08:07 +03:00
<div class="table-responsive">
<table class="table table-borderless">
<tbody>
<tr>
<th>
@if ($invoice->notes)
<p class="form-control-label">{{ trans_choice('general.notes', 2) }}</p>
<p class="form-control text-muted long-texts">{{ $invoice->notes }}</p>
@endif
</th>
</tr>
</tbody>
</table>
</div>
2019-11-16 10:21:14 +03:00
</div>
2019-12-13 18:08:07 +03:00
2019-11-16 10:21:14 +03:00
<div class="col-md-5">
<div class="table-responsive">
<table class="table">
<tbody>
@foreach($invoice->totals as $total)
@if($total->code != 'total')
<tr>
<th>{{ trans($total['name']) }}:</th>
<td class="text-right">@money($total->amount, $invoice->currency_code, true)</td>
</tr>
@else
@if ($invoice->paid)
<tr class="text-success">
<th>{{ trans('invoices.paid') }}:</th>
<td class="text-right">- @money($invoice->paid, $invoice->currency_code, true)</td>
</tr>
@endif
<tr>
<th>{{ trans($total['name']) }}:</th>
<td class="text-right">@money($total->amount - $invoice->paid, $invoice->currency_code, true)</td>
</tr>
@endif
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="card-footer">
<div class="row">
<div class="col-md-4">
2020-01-11 16:57:32 +03:00
@if($invoice->status != 'paid')
2019-11-16 10:21:14 +03:00
@if ($payment_methods)
{!! Form::open([
'id' => 'invoice-payment',
'role' => 'form',
'autocomplete' => "off",
2019-11-29 16:40:19 +03:00
'novalidate' => 'true',
'class' => 'mb-0',
2019-11-16 10:21:14 +03:00
]) !!}
{{ Form::selectGroup('payment_method', '', 'fas fa-wallet', $payment_methods, '', ['change' => 'onChangePaymentMethodSigned', 'id' => 'payment-method', 'class' => 'form-control', 'placeholder' => trans('general.form.select.field', ['field' => trans_choice('general.payment_methods', 1)])], 'mb-0') }}
{!! Form::hidden('invoice_id', $invoice->id, ['v-model' => 'form.invoice_id']) !!}
{!! Form::close() !!}
@endif
@endif
</div>
2019-12-13 18:08:07 +03:00
2019-11-16 10:21:14 +03:00
<div class="col-md-8 text-right">
<a href="{{ $print_action }}" target="_blank" class="btn btn-success">
<i class="fa fa-print"></i>&nbsp; {{ trans('general.print') }}
</a>
<a href="{{ $pdf_action }}" class="btn btn-white" data-toggle="tooltip" title="{{ trans('invoices.download_pdf') }}">
<i class="fa fa-file-pdf"></i>&nbsp; {{ trans('general.download') }}
</a>
</div>
2019-12-25 15:04:08 +03:00
<div class="col-md-12" id="confirm">
2019-11-16 10:21:14 +03:00
<component v-bind:is="method_show_html" @interface="onRedirectConfirm"></component>
</div>
</div>
</div>
</div>
@endsection
@push('footer_start')
<script src="{{ asset('public/js/portal/invoices.js?v=' . version('short')) }}"></script>
2019-12-25 15:04:08 +03:00
<script type="text/javascript">
var payment_action_path = {!! json_encode($payment_actions) !!};
2019-11-16 10:21:14 +03:00
</script>
@endpush