osb/resources/views/theme/backend/adminlte/r/service/email/list.blade.php

94 lines
2.5 KiB
PHP
Raw Normal View History

@extends('adminlte::layouts.app')
@section('htmlheader_title')
Email Hosting
@endsection
@section('page_title')
Email Hosting
@endsection
@section('contentheader_title')
Email Hosting
@endsection
@section('contentheader_description')
Email Hosting currently managed.
@endsection
@section('main-content')
<div class="row">
<div class="col-12">
<div class="card card-dark">
<div class="card-body">
2022-04-19 07:07:39 +00:00
<table class="table table-hover" id="services">
<thead>
<tr>
<th>Service ID</tH>
<th>Account</th>
2022-04-19 07:07:39 +00:00
<th>Product</th>
<th>Domain</th>
<th>Expires</th>
<th>Supplier</th>
<th>Admin URL</th>
<th>Admin Details</th>
2022-04-02 07:16:02 +00:00
<th>Accounts</th>
<th>Next Billed</th>
<th>Price</th>
<th>Term</th>
</tr>
</thead>
<tbody>
@foreach ($o as $oo)
2022-04-19 07:07:39 +00:00
<tr @if ($oo->hasExpired()) class="table-danger" @endif>
<td><a href="{{ url('u/service',[$oo->service_id]) }}">{{ $oo->service->sid }}</td>
<td>{{ $oo->service->account->name }}</td>
2022-04-19 07:07:39 +00:00
<td>{{ $oo->service->product->name }}</td>
<td>{{ $oo->service_name }}</td>
2022-04-19 07:07:39 +00:00
<td>{{ $oo->service_expire ? $oo->service_expire->format('Y-m-d') : '-' }}</td>
<td>{{ $oo->service->product->supplier->name }}</td>
<td>{{ $oo->admin_url }}</td>
<td>@if($oo->admin_user){{ $oo->admin_user }}/{{ $oo->admin_pass }}@else &nbsp; @endif</td>
2022-04-02 07:16:02 +00:00
<td class="text-right">{{ number_format($oo->accounts ?: 0,0) }}</td>
<td>@if ($oo->service->isBilled()) <span class="@if($oo->service->suspend_billing)strike @endif">{{ $oo->service->invoice_next->format('Y-m-d') }}</span> @else - @endif</td>
<td>@if (! $oo->service->external_billing)${{ number_format($oo->service->next_invoice_items(TRUE)->sum('total'),2) }}@else - @endif</td>
<td>{{ $oo->service->billing_interval_string }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
@endsection
@section('page-scripts')
@css(datatables,bootstrap4|rowgroup)
@js(datatables,bootstrap4|rowgroup)
<style>
.strike {
text-decoration: line-through;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
2022-04-19 07:07:39 +00:00
$('#services').DataTable({
order: [[5,'asc'],[1,'asc'],[2,'desc']],
rowGroup: {
2022-04-19 07:07:39 +00:00
dataSrc: 5,
},
columnDefs: [
{
2022-04-19 07:07:39 +00:00
targets: [5],
visible: false,
}
],
});
$('tbody').on('click','tr', function () {
$(this).toggleClass('selected');
});
});
</script>
@append