@extends('layouts.app')
@section('title', __('users_locations_purchase.users_locations_in_system'))
@section('content')
@component('components.widget')
@slot('tool')
@if ($IsGbs == true)
@endif
@php
$Subscribe_Status = \App\System::where('key', 'Subscribe_Status')->value('value');
@endphp
@if ($Subscribe_Status == 0)
@endif
@endslot
@endcomponent
@lang('users_locations_purchase.users_in_system')
{{ $totalUsersCount ?? 0}}
@lang('users_locations_purchase.locations_in_system')
{{ $totalLocationsCount ?? 0 }}
@lang('users_locations_purchase.users_count_system_with_gbs')
{{ $totalUsersWithGbsCount ?? 0}}
@lang('users_locations_purchase.yearly_amount')
{{ number_format($contactInfo->yearly_subscribe, 2) }}
@component('components.widget', [
'class' => 'box-primary',
'title' => __('users_locations_purchase.all_users_purchase'),
])
| @lang('users_locations_purchase.users_counts_view') |
@lang('users_locations_purchase.total_amount') |
@lang('users_locations_purchase.status') |
@lang('users_locations_purchase.action') |
@endcomponent
@component('components.widget', [
'class' => 'box-primary',
'title' => __('users_locations_purchase.all_users_with_gbs_purchase'),
])
| @lang('users_locations_purchase.users_with_gbs_counts_view') |
@lang('users_locations_purchase.total_amount') |
@lang('users_locations_purchase.status') |
@lang('users_locations_purchase.action') |
@endcomponent
@component('components.widget', [
'class' => 'box-primary',
'title' => __('users_locations_purchase.all_locations_purchase'),
])
| @lang('users_locations_purchase.locations_counts_view') |
@lang('users_locations_purchase.total_amount') |
@lang('users_locations_purchase.status') |
@lang('users_locations_purchase.action') |
@endcomponent
@stop
@section('javascript')
@endsection