2022-04-19 07:07:39 +00:00
|
|
|
<!-- $o = App\Models\Service -->
|
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-06 09:31:43 +00:00
|
|
|
|
2020-02-05 04:47:24 +00:00
|
|
|
<div class="card-body bg-light">
|
|
|
|
<table class="table table-sm">
|
2020-02-06 22:11:02 +00:00
|
|
|
<tr>
|
|
|
|
<th>Account</th>
|
2022-04-22 06:35:01 +00:00
|
|
|
<td><a href="{{url('u/home',$o->account->user_id)}}">{{ $o->account->sid }}</a></td>
|
2020-02-06 22:11:02 +00:00
|
|
|
</tr>
|
2020-02-05 04:47:24 +00:00
|
|
|
<tr>
|
|
|
|
<th>Status</th>
|
2020-02-06 09:31:43 +00:00
|
|
|
<td>{!! $o->status_html !!}</td>
|
2020-02-05 04:47:24 +00:00
|
|
|
</tr>
|
2020-04-22 13:23:54 +00:00
|
|
|
@if ($o->order_status == 'ORDER-SENT')
|
|
|
|
<tr>
|
|
|
|
<th>Order Reference</th>
|
|
|
|
<td>{{ $o->order_info_reference ?? '' }}</td>
|
|
|
|
</tr>
|
|
|
|
@endif
|
2022-04-22 04:41:18 +00:00
|
|
|
@if ($o->start_at AND $o->isPending())
|
2020-04-23 07:38:09 +00:00
|
|
|
<tr>
|
|
|
|
<th>Pending Connection</th>
|
2022-04-22 04:41:18 +00:00
|
|
|
<td>{{ $o->start_at->format('Y-m-d') }}</td>
|
2020-04-23 07:38:09 +00:00
|
|
|
</tr>
|
|
|
|
@endif
|
2022-04-22 04:41:18 +00:00
|
|
|
@if ($o->stop_at)
|
2020-04-22 12:54:05 +00:00
|
|
|
<tr>
|
|
|
|
<th>Cancellation Date</th>
|
2022-04-22 04:41:18 +00:00
|
|
|
<td>{{ $o->stop_at->format('Y-m-d') }}</td>
|
2020-04-22 12:54:05 +00:00
|
|
|
</tr>
|
|
|
|
@endif
|
2020-04-18 22:33:41 +00:00
|
|
|
@if (($o->active OR $o->isPending()) AND ! $o->external_billing)
|
2020-02-05 04:47:24 +00:00
|
|
|
<tr>
|
|
|
|
<th>Billed</th>
|
|
|
|
<td>{{ $o->billing_period }}</td>
|
|
|
|
</tr>
|
2020-02-08 11:51:50 +00:00
|
|
|
@if($o->active AND $o->invoice_to)
|
2020-02-06 09:31:43 +00:00
|
|
|
<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
|
2020-02-06 09:31:43 +00:00
|
|
|
@endif
|
2020-02-05 04:47:24 +00:00
|
|
|
<tr>
|
2020-02-06 09:31:43 +00:00
|
|
|
<th>Next Invoice</th>
|
2020-04-01 12:35:06 +00:00
|
|
|
<td>@if ($o->suspend_billing)<strike>@endif{{ $o->invoice_next->format('Y-m-d') }}@if ($o->suspend_billing)</strike> <strong>SUSPENDED</strong>@endif</td>
|
2020-02-05 04:47:24 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2020-02-06 09:31:43 +00:00
|
|
|
<th>Next Estimated Invoice</th>
|
2020-02-13 11:18:20 +00:00
|
|
|
<td>${{ number_format($o->next_invoice_items(TRUE)->sum('total'),2) }} <sup>*</sup></td>
|
2020-02-05 04:47:24 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2020-02-06 09:31:43 +00:00
|
|
|
<th>Payment Method</th>
|
2022-04-22 00:36:41 +00:00
|
|
|
<td>@if ($o->billing)Direct Debit @else Invoice @endif</td>
|
2020-02-06 09:31:43 +00:00
|
|
|
</tr>
|
|
|
|
|
2020-04-18 22:33:41 +00:00
|
|
|
@elseif($o->wasCancelled())
|
2020-02-06 09:31:43 +00:00
|
|
|
<tr>
|
|
|
|
<th>Cancelled</th>
|
2021-01-04 12:18:57 +00:00
|
|
|
<!-- @todo This should show the cancelled date -->
|
2022-04-22 04:41:18 +00:00
|
|
|
<td>{!! $o->stop_at ? $o->stop_at->format('Y-m-d') : ($o->paid_to ? $o->paid_to->format('Y-m-d') : '').'<sup>*</sup>' !!}</td>
|
2020-02-05 04:47:24 +00:00
|
|
|
</tr>
|
|
|
|
@endif
|
|
|
|
</table>
|
|
|
|
</div>
|
2020-02-06 09:31:43 +00:00
|
|
|
|
|
|
|
@if($o->active OR $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
|
2021-01-04 12:18:57 +00:00
|
|
|
</div>
|