![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/pdf-ai.com/private_html/resources/views/user/profile/ |
@extends('layouts.app')
@section('page-header')
<!-- PAGE HEADER -->
<div class="page-header mt-5-7">
<div class="page-leftheader">
<h4 class="page-title mb-0">{{ __('My Profile') }}</h4>
<ol class="breadcrumb mb-2">
<li class="breadcrumb-item"><a href="{{route('user.dashboard')}}"><i class="fa-solid fa-id-badge mr-2 fs-12"></i>{{ __('User') }}</a></li>
<li class="breadcrumb-item active" aria-current="page"><a href="{{url('#')}}"> {{ __('My Profile') }}</a></li>
</ol>
</div>
</div>
<!-- END PAGE HEADER -->
@endsection
@section('content')
<!-- USER PROFILE PAGE -->
<div class="row">
<div class="col-xl-3 col-lg-3 col-md-12">
<div class="card border-0" id="dashboard-background">
<div class="widget-user-image overflow-hidden mx-auto mt-5"><img alt="User Avatar" class="rounded-circle" src="@if(auth()->user()->profile_photo_path){{ asset(auth()->user()->profile_photo_path) }} @else {{ URL::asset('img/users/avatar.jpg') }} @endif"></div>
<div class="card-body text-center">
<div>
<h4 class="mb-1 mt-1 text-primary font-weight-bold fs-16">{{ auth()->user()->name }}</h4>
<h6 class="text-white fs-12">{{ auth()->user()->job_role }}</h6>
</div>
</div>
<div class="card-footer p-0">
<div class="row">
<div class="col-sm-12">
<div class="text-center p-4">
<div class="d-flex w-100">
<div class="flex w-100">
<h4 class="mb-3 mt-1 font-weight-800 text-primary text-shadow fs-16">{{ number_format(auth()->user()->available_words + auth()->user()->available_words_prepaid) }} / {{ number_format(auth()->user()->total_words) }}</h4>
<h6 class="text-white fs-12 text-shadow">{{ __('Words Left') }}</h6>
</div>
<div class="flex w-100">
<h4 class="mb-3 mt-1 font-weight-800 text-primary text-shadow fs-16">{{ number_format(auth()->user()->available_images + auth()->user()->available_images_prepaid) }} / {{ number_format(auth()->user()->total_images) }}</h4>
<h6 class="text-white fs-12 text-shadow">{{ __('Images Left') }}</h6>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="card-footer p-0">
<div class="row" id="profile-pages">
<div class="col-sm-12">
<div class="text-center pt-4">
<a href="{{ route('user.profile.edit') }}" class="fs-13 text-white"><i class="fa fa-calendar-lines-pen mr-1"></i> {{ __('Update Profile') }}</a>
</div>
</div>
<div class="col-sm-12">
<div class="text-center p-3 ">
<a href="{{ route('user.security') }}" class="fs-13 text-white"><i class="fa fa-lock-hashtag mr-1"></i> {{ __('Change Password') }}</a>
</div>
</div>
<div class="col-sm-12">
<div class="text-center pb-4">
<a href="{{ route('user.security.2fa') }}" class="fs-13 text-white"><i class="fa fa-shield-check mr-1"></i> {{ __('2FA Authentication') }}</a>
</div>
</div>
</div>
</div>
</div>
<div class="card border-0">
<div class="card-body">
<h4 class="card-title mb-4 mt-1">{{ __('Personal Details') }}</h4>
<div class="table-responsive">
<table class="table mb-0">
<tbody>
<tr>
<td class="py-2 px-0">
<span class="font-weight-semibold w-50">{{ __('Full Name') }} </span>
</td>
<td class="py-2 px-0">{{ auth()->user()->name }}</td>
</tr>
<tr>
<td class="py-2 px-0">
<span class="font-weight-semibold w-50">{{ __('Email') }} </span>
</td>
<td class="py-2 px-0">{{ auth()->user()->email }}</td>
</tr>
<tr>
<td class="py-2 px-0">
<span class="font-weight-semibold w-50">{{ __('Referral ID') }} </span>
</td>
<td class="py-2 px-0">{{ auth()->user()->referral_id }}</td>
</tr>
<tr>
<td class="py-2 px-0">
<span class="font-weight-semibold w-50">{{ __('Job Role') }}</span>
</td>
<td class="py-2 px-0">{{ auth()->user()->job_role }}</td>
</tr>
<tr>
<td class="py-2 px-0">
<span class="font-weight-semibold w-50">{{ __('Company') }}</span>
</td>
<td class="py-2 px-0">{{ auth()->user()->company }}</td>
</tr>
<tr>
<td class="py-2 px-0">
<span class="font-weight-semibold w-50">{{ __('Website') }} </span>
</td>
<td class="py-2 px-0">{{ auth()->user()->website }}</td>
</tr>
<tr>
<td class="py-2 px-0">
<span class="font-weight-semibold w-50">{{ __('City') }} </span>
</td>
<td class="py-2 px-0">{{ auth()->user()->city }}</td>
</tr>
<tr>
<td class="py-2 px-0">
<span class="font-weight-semibold w-50">{{ __('Country') }} </span>
</td>
<td class="py-2 px-0">{{ auth()->user()->country }}</td>
</tr>
<tr>
<td class="py-2 px-0">
<span class="font-weight-semibold w-50">{{ __('Phone') }} </span>
</td>
<td class="py-2 px-0">{{ auth()->user()->phone_number }}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="col-xl-9 col-lg-9 col-md-12">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<div class="row">
<div class="col-lg-6 col-md-12 col-sm-12">
<div class="card overflow-hidden border-0">
<div class="card-body d-flex">
<div class="usage-info w-100">
<p class=" mb-3 fs-12 font-weight-bold">{{ __('Words Generated') }}</p>
<h2 class="mb-2 number-font fs-20">{{ number_format($data['words']) }} <span class="text-muted fs-18">{{ __('words') }}</span></h2>
</div>
<div class="usage-icon w-100 text-right">
<i class="fa-solid fa-scroll-old"></i>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12">
<div class="card overflow-hidden border-0">
<div class="card-body d-flex">
<div class="usage-info w-100">
<p class=" mb-3 fs-12 font-weight-bold">{{ __('Images Created') }}</p>
<h2 class="mb-2 number-font fs-20">{{ number_format($data['images']) }} <span class="text-muted fs-18">{{ __('images') }}</span></h2>
</div>
<div class="usage-icon w-100 text-right">
<i class="fa-solid fa-image-landscape"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12">
<div class="card mb-5 border-0">
<div class="card-header d-inline border-0">
<div>
<h3 class="card-title fs-16 mt-3 mb-4"><i class="fa-solid fa-box-open mr-4 text-info"></i>{{ __('Subscription') }}</h3>
</div>
@if ($user_subscription == '')
<div>
<h3 class="card-title fs-24 font-weight-800">{{ __('Free Trial') }}</h3>
</div>
<div class="mb-1">
<span class="fs-12 text-muted">{{ __('No Subscription ') }} / {!! config('payment.default_system_currency_symbol') !!}0.00 {{ __('Per Month') }}</span>
</div>
@else
<div>
<h3 class="card-title fs-24 font-weight-800">@if ($user_subscription->payment_frequency == 'monthly') {{ __('Monthly Subscription') }} @else {{ __('Yearly Subscription') }} @endif</h3>
</div>
<div class="mb-1">
<span class="fs-12 text-muted">{{ $user_subscription->plan_name }} {{ __('Plan') }} / {!! config('payment.default_system_currency_symbol') !!}{{ $user_subscription->price }} @if ($user_subscription->payment_frequency == 'monthly') {{ __('Per Month') }} @else {{ __('Per Year') }} @endif</span>
</div>
@endif
</div>
<div class="card-body">
<div class="mb-3">
@if ($user_subscription == '')
<span class="fs-12 text-muted">{{ __('Total one time words available ') }} {{ number_format(auth()->user()->available_words) }}.</span> <span class="fs-12 text-muted">{{ __('Total prepaid words available ') }} {{ number_format(auth()->user()->available_words_prepaid) }}. </span>
@else
<span class="fs-12 text-muted">{{ __('Total words available via subscription plan ') }} {{ number_format(auth()->user()->available_words) }} {{ __(' out of ') }} {{ number_format(auth()->user()->total_words) }}. </span> <span class="fs-12 text-muted">{{ __('Total prepaid words available ') }} {{ number_format(auth()->user()->available_words_prepaid) }}. </span>
@endif
</div>
<div class="progress mb-4">
<div class="progress-bar progress-bar-striped progress-bar-animated bg-warning subscription-bar" role="progressbar" aria-valuemin="0" aria-valuemax="100" style="width: {{ $progress['words'] }}%"></div>
</div>
@if ($subscription)
<div class="mb-3">
<span class="fs-12 text-muted">{{ __('Subscription renewal date ') }}: {{ $subscription->active_until }} </span>
</div>
@endif
</div>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12">
<div class="card border-0">
<div class="card-header d-inline border-0">
<div>
<h3 class="card-title fs-16 mt-3 mb-4"><i class="fa-solid fa-scroll-old mr-4 text-info"></i>{{ __('Words & Images Generated') }} <span class="text-muted">({{ __('Current Year') }})</span></h3>
</div>
</div>
<div class="card-body">
<div class="chartjs-wrapper-demo">
<canvas id="chart-user-usage" class="h-330"></canvas>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END USER PROFILE PAGE -->
@endsection
@section('js')
<!-- Chart JS -->
<script src="{{URL::asset('plugins/chart/chart.min.js')}}"></script>
<script>
$(function() {
'use strict';
let usageData = JSON.parse(`<?php echo $chart_data['word_usage']; ?>`);
let usageDataset = Object.values(usageData);
let usageData2 = JSON.parse(`<?php echo $chart_data['image_usage']; ?>`);
let usageDataset2 = Object.values(usageData2);
let delayed;
let ctx = document.getElementById('chart-user-usage');
new Chart(ctx, {
type: 'bar',
data: {
labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
datasets: [{
label: 'Words Generated',
data: usageDataset,
backgroundColor: '#007bff',
borderWidth: 1,
borderRadius: 20,
barPercentage: 0.5,
fill: true
},
{
label: 'Images Created',
data: usageDataset2,
backgroundColor: '#FF9D00',
borderWidth: 1,
borderRadius: 20,
barPercentage: 0.5,
fill: true
}]
},
options: {
maintainAspectRatio: false,
legend: {
display: false,
labels: {
display: false
}
},
responsive: true,
animation: {
onComplete: () => {
delayed = true;
},
delay: (context) => {
let delay = 0;
if (context.type === 'data' && context.mode === 'default' && !delayed) {
delay = context.dataIndex * 50 + context.datasetIndex * 5;
}
return delay;
},
},
scales: {
y: {
stacked: true,
ticks: {
beginAtZero: true,
font: {
size: 10
},
stepSize: 50000,
},
grid: {
color: '#ebecf1',
borderDash: [3, 2]
}
},
x: {
stacked: true,
ticks: {
font: {
size: 10
}
},
grid: {
color: '#ebecf1',
borderDash: [3, 2]
}
},
},
plugins: {
tooltip: {
cornerRadius: 10,
xPadding: 10,
yPadding: 10,
backgroundColor: '#000000',
titleColor: '#FF9D00',
yAlign: 'bottom',
xAlign: 'center',
},
legend: {
position: 'bottom',
labels: {
boxWidth: 10,
font: {
size: 10
}
}
}
}
}
});
});
</script>
@endsection