diff --git a/resources/views/theme/backend/adminlte/service/home.blade.php b/resources/views/theme/backend/adminlte/service/home.blade.php
index 2a7b0a9..b56c1e0 100644
--- a/resources/views/theme/backend/adminlte/service/home.blade.php
+++ b/resources/views/theme/backend/adminlte/service/home.blade.php
@@ -88,6 +88,9 @@
Email.
@can('wholesaler')
+
+ @include('service.widget.billinghistory',['o'=>$o])
+
@if(($x=$o->changes()->where('service__change.active',TRUE)->where('complete',FALSE)->get()->pop()))
@include('service.widget.internal',['o'=>$o,'p'=>$x])
diff --git a/resources/views/theme/backend/adminlte/service/widget/billinghistory.blade.php b/resources/views/theme/backend/adminlte/service/widget/billinghistory.blade.php
new file mode 100644
index 0000000..221c706
--- /dev/null
+++ b/resources/views/theme/backend/adminlte/service/widget/billinghistory.blade.php
@@ -0,0 +1,51 @@
+
+
+
+ Invoice |
+ Due |
+ {{--
+ Start |
+ Stop |
+ --}}
+ Total |
+ Balance |
+
+
+
+
+ @foreach($o->account->invoiceSummary($o->invoices->pluck('id')) as $oo)
+
+ {{ $oo->id }} |
+ {{ $oo->due_at->format('Y-m-d') }} |
+ {{--
+ {{ $oo->_start_at->format('Y-m-d') }} |
+ {{ $oo->_stop_at->format('Y-m-d') }} |
+ --}}
+ {{ number_format($oo->_xtotal,2) }} |
+ {{ number_format($oo->_xbalance,2) }} |
+
+ @endforeach
+
+
+ {{--
+ @dump($oo->getAttributes())
+ @dump($o->invoices()->get())
+ --}}
+
+
+@section('page-scripts')
+ @css(datatables,bootstrap4)
+ @js(datatables,bootstrap4)
+
+
+@append
\ No newline at end of file