@extends('layouts.app') @section('page-header') @endsection @section('content')

{{ __('Available Balance') }}

{!! config('payment.default_system_currency_symbol') !!}{{ number_format(auth()->user()->balance) }}

{{ __('Available Minutes') }}

{{ number_format(auth()->user()->available_minutes) }}

{{ __('Total Minutes Purchased') }}

{{ number_format($total_data['total_purchased_minutes'][0]['data']) }}

{{ __('Total Minutes Used') }}

{{ number_format((float)$total_data['total_minutes_used'][0]['data'] / 60, 2) }}

{{ __('Spending Analysis ') }}({{ __('Current Year') }})

{{ __('Total Spending') }}

{!! config('payment.default_system_currency_symbol') !!}{{ number_format((float)$total_data['total_payment'][0]['data'], 2, '.', '') }}

@endsection @section('js') @endsection