@extends('commons.layouts_version_02.admin') @section('content') @if(App\LeafAPI::get_module_status([App\LeafAPI::label_power_meter]))
{{App\Language::trans('Last update')}}
{{$last_update_at}}
86
{{App\Language::trans('Credit at zero or > ')}}
{{$outstanding_count}}
75
{{App\Language::trans('Healthy credit')}}
{{$min_credit_count}}
+5%
{{App\Language::trans('Payment made')}}
{{$recent_pay_count}}
-12%
{{date('F-Y', strtotime('now'))}} {{App\Language::trans('Daily Usage')}}
{{date('Y', strtotime('now'))}} {{App\Language::trans('Monthly Usage')}}
@endif
{{App\Language::trans('Modules Status Report')}}
@foreach($module_status_listing as $row) @endforeach
{{App\Language::trans('Modules')}} {{App\Language::trans('Description')}} {{App\Language::trans('Solution')}} {{App\Language::trans('Action')}}
{{App\Language::trans($row['module_name'])}} {{App\Language::trans($row['description'])}} {{App\Language::trans($row['solution'])}} {{App\Language::trans('Fix now')}}
{!!Form::hidden('area_chart_data', $area_chart_data, ['id'=>'area_chart_data' , 'value'=>'area_chart_data']) !!} @endsection @section('script') $.get("{{action('DashboardsController@getDashboardCount')}}", function(data){ $(".outstanding_count").html(data.outstanding_count); $(".min_credit_count").html(data.min_credit_count); },"json"); @endsection