osb/resources/views/theme/backend/adminlte/service/widget/information.blade.php

89 lines
2.5 KiB
PHP
Raw Normal View History

<!-- $o=Service::class -->
2020-02-05 04:47:24 +00:00
<div class="card">
2020-04-18 22:33:41 +00:00
@if($o->external_billing)
<div class="ribbon-wrapper ribbon-lg">
<div class="ribbon bg-danger">
EXTERNAL BILLING
</div>
</div>
@endif
2020-02-05 04:47:24 +00:00
<div class="card-header bg-light">
<h3 class="card-title">Service Information</h3>
</div>
2020-02-05 04:47:24 +00:00
<div class="card-body bg-light">
<table class="table table-sm">
<tr>
<th>Account</th>
<td><a href="{{url('u/home',$o->account->user_id)}}">{{ $o->account->sid }}</a></td>
</tr>
2020-02-05 04:47:24 +00:00
<tr>
<th>Status</th>
<td><x-button.status :status="$o->status" :substatus="$o->order_status"/></td>
2020-02-05 04:47:24 +00:00
</tr>
@if($o->order_status == 'ORDER-SENT')
<tr>
<th>Order Reference</th>
<td>{{ $o->order_info_reference ?? '' }}</td>
</tr>
@endif
@if($o->start_at AND $o->isPending())
<tr>
<th>Pending Connection</th>
<td>{{ $o->start_at->format('Y-m-d') }}</td>
</tr>
@endif
@if(($o->active || $o->isPending()) && (! $o->external_billing))
2020-02-05 04:47:24 +00:00
<tr>
<th>Billed</th>
<td>{{ $o->billing_interval_string }}</td>
2020-02-05 04:47:24 +00:00
</tr>
2023-05-09 01:09:00 +00:00
<tr>
<th>Amount</th>
2024-07-07 05:02:02 +00:00
@if($o->isChargeOverridden())
<td>@if($o->billing_charge < $o->charge_orig)<del>${{ number_format($o->charge_orig,2) }}</del> @endif${{ number_format($o->billing_charge,2) }}</td>
2023-05-09 01:09:00 +00:00
@else
<td>${{ number_format($o->billing_charge,2) }}</td>
@endif
</tr>
@if($o->active && $o->invoice_to)
<tr>
<th>Invoiced To</th>
<td>{{ $o->invoice_to->format('Y-m-d') }}</td>
</tr>
2020-04-01 12:35:06 +00:00
@if($o->paid_to)
<tr>
<th>Paid Until</th>
<td>{{ $o->paid_to->format('Y-m-d') }}</td>
</tr>
@endif
@endif
2020-02-05 04:47:24 +00:00
<tr>
<th>Next Invoice</th>
<td>@if($o->suspend_billing)<del>@endif{{ $o->invoice_next->format('Y-m-d') }}@if($o->suspend_billing)</del> <strong>SUSPENDED</strong>@endif</td>
2020-02-05 04:47:24 +00:00
</tr>
<tr>
<th>Next Estimated Invoice</th>
<td>${{ number_format($o->next_invoice_items(TRUE)->sum('total'),2) }} <sup>*</sup></td>
2020-02-05 04:47:24 +00:00
</tr>
<tr>
<th>Payment Method</th>
<td>@if($o->billing)Direct Debit @else Invoice @endif</td>
</tr>
2020-04-18 22:33:41 +00:00
@elseif($o->wasCancelled())
<tr>
<th>Cancelled</th>
<td>{{ ($o->stop_at ?: $o->paid_to)?->format('Y-m-d') }}</td>
2020-02-05 04:47:24 +00:00
</tr>
@endif
</table>
</div>
@if($o->active || $o->isPending())
<div class="card-footer sm">
<strong><sup>*</sup>NOTE:</strong> Estimated Invoice does not include any setup, connection nor all current billing cycle usage charges.
</div>
@endif
</div>