| Server IP : 139.59.63.204 / Your IP : 216.73.217.62 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu-s-1vcpu-1gb-blr1-01 6.8.0-110-generic #110-Ubuntu SMP PREEMPT_DYNAMIC Thu Mar 19 15:09:20 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/abyogasms.com/resources/views/ |
Upload File : |
<!DOCTYPE html>
<html lang="en" class="h-full bg-slate-50">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Dashboard</title>
@vite(['resources/css/app.css', 'resources/js/app.js'])
</head>
<body class="h-full font-sans text-slate-800" x-data="{ mobileMenuOpen: false }">
<!-- Wrapper -->
<div class="flex h-screen overflow-hidden">
<!-- Sidebar Component -->
@include('components.dashboard-sidebar')
<!-- Main Content Area -->
<div class="flex-1 flex flex-col overflow-y-auto">
<!-- Header Component -->
@include('components.dashboard-header')
<!-- Dashboard Inner Content -->
<main class="p-6 max-w-7xl w-full mx-auto">
<div class="bg-white p-6 rounded-xl border border-slate-200 shadow-sm mb-6">
<h1 class="text-2xl font-bold text-slate-900 mb-2">Hello, {{ auth()->user()->name }}!</h1>
<p class="text-slate-600">You are logged into your ABYOGASMS user dashboard. Here you can get all certificate and information.</p>
</div>
<div class="bg-white p-6 rounded-xl border border-slate-200 shadow-sm mb-6">
<h2 class="text-lg font-bold text-slate-900 mb-4">Membership Certificate</h2>
<p class="text-slate-600 mb-4">Generate your official membership certificate.</p>
<a href="{{ route('certificate.generate') }}" class="inline-block bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-6 rounded-md transition-colors duration-200">
Generate Certificate
</a>
</div>
@if(auth()->user()->id_allow)
<div class="bg-white p-6 rounded-xl border border-slate-200 shadow-sm">
<h2 class="text-lg font-bold text-slate-900 mb-4">ABYOGASMS ID Card</h2>
<p class="text-slate-600 mb-4">Generate your official ID Card.</p>
<a href="{{ route('idcard.generate') }}" class="inline-block bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-6 rounded-md transition-colors duration-200">
Generate ID Card
</a>
</div>
@endif
</main>
</div>
</div>
</body>
</html>