@extends('backend.layouts.form') @section('title', $user->firstname . ' ' . $user->lastname . ' | Details') @section('back', route('admin.users.index')) @section('content') @if (!is_null($subscription) && $subscription->status)

{{ __('User Spend') }}

{{ priceSymbol($userSpend) }}

{{ __('Taxes and fees included') }}

{{ __('User Plan') }}

{{ $subscription->plan->name }} @if ($subscription->plan->interval == 0) ({{ __('Monthly') }}) @elseif($subscription->plan->interval == 1) ({{ __('Yearly') }}) @elseif($subscription->plan->interval == 2) ({{ __('Lifetime') }}) @endif

@if ($subscription->expiry_at) {{ __('Expiry at') . ' : ' . vDate($subscription->expiry_at) }} @endif

{{ __('User Transfers') }}

{{ $userTransfers }}

{{ __('Canceled transfers included') }}
@endif {{-- @if (is_null($subscription))
{{ $user->firstname }} {{ __('is not subscribed') }}
@endif--}} @if (!is_null($subscription) && !$subscription->status)
{{ __('User subscription has been canceled') }}
@endif
@include('backend.includes.userlist')
@csrf @method('PUT')
status) checked @endif>
email_verified_at)) checked @endif>
{{----}}
@endsection