@extends('layouts.app')
@push('datatable-styles')
@include('sections.datatable_css')
@endpush
@section('filter-section')
{{-- DATE RANGE --}}
{{-- STATUS --}}
@lang('app.status')
{{-- CLIENT --}}
@if (in_array('clients', user_modules()))
@lang('app.client')
@endif
{{-- ROTATION --}}
@lang('app.frequency')
{{-- RESET --}}
@lang('app.clearFilters')
@endsection
@section('content')
{{-- BACK BUTTON --}}
@lang('app.menu.invoices')
{{-- STAT CARDS --}}
@lang('app.totalSubscriptions')
{{ $statsTotal }}
@lang('app.activeSubscriptions')
{{ $statsActive }}
@lang('app.suspended')
{{ $statsSuspended }}
@lang('app.totalAmount')
{{ $statsTotalAmount }}
{{-- DATATABLE --}}
{!! $dataTable->table(['class' => 'table table-hover border-0 w-100']) !!}
@endsection
@push('scripts')
@include('sections.datatable_js')
@endpush