mirror of
https://github.com/twinpath/app.git
synced 2026-01-26 05:15:28 +07:00
chore: cleanup project structure and update readme for beta release
This commit is contained in:
90
resources/views/pages/public/contact.blade.php
Normal file
90
resources/views/pages/public/contact.blade.php
Normal file
@@ -0,0 +1,90 @@
|
||||
@extends('layouts.fullscreen-layout', ['title' => 'Contact Us'])
|
||||
|
||||
@section('content')
|
||||
<div class="relative min-h-screen bg-white dark:bg-gray-900 transition-colors duration-300 overflow-hidden flex flex-col">
|
||||
<!-- Background Decoration -->
|
||||
<div class="absolute top-0 left-0 -translate-x-1/2 -translate-y-1/2 w-[500px] h-[500px] bg-brand-500/10 rounded-full blur-[120px] pointer-events-none"></div>
|
||||
<div class="absolute bottom-0 right-0 translate-x-1/2 translate-y-1/2 w-[600px] h-[600px] bg-brand-500/5 rounded-full blur-[150px] pointer-events-none"></div>
|
||||
|
||||
<x-public.navbar />
|
||||
|
||||
<main class="flex-grow pt-32 pb-20 px-4 relative z-10">
|
||||
<div class="max-w-xl mx-auto space-y-8">
|
||||
<div class="text-center">
|
||||
<h1 class="text-4xl font-extrabold text-gray-900 dark:text-white mb-4">
|
||||
Contact Our Team
|
||||
</h1>
|
||||
<p class="text-gray-600 dark:text-gray-400">
|
||||
Have a question or need legal assistance? We're here to help.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
@if (session('success'))
|
||||
<div class="rounded-2xl bg-green-50 p-4 dark:bg-green-900/30 border border-green-200 dark:border-green-800 shadow-sm animate-pulse-soft">
|
||||
<div class="flex items-center gap-3">
|
||||
<svg class="h-5 w-5 text-green-500" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
|
||||
</svg>
|
||||
<p class="text-sm font-bold text-green-800 dark:text-green-200">
|
||||
{{ session('success') }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="bg-white px-8 py-10 shadow-2xl rounded-[2.5rem] dark:bg-white/[0.03] border border-gray-100 dark:border-gray-800 backdrop-blur-sm">
|
||||
<form action="{{ route('contact.store') }}" method="POST" class="space-y-6">
|
||||
@csrf
|
||||
<div class="grid grid-cols-1 gap-6 sm:grid-cols-2">
|
||||
<div>
|
||||
<label for="name" class="block text-xs font-bold text-gray-400 dark:text-gray-500 uppercase tracking-widest mb-2">Name</label>
|
||||
<input type="text" name="name" id="name" required value="{{ old('name') }}"
|
||||
class="w-full rounded-2xl border-gray-200 bg-gray-50/50 px-5 py-4 text-sm text-gray-900 transition focus:ring-brand-500 focus:border-brand-500 dark:border-gray-700 dark:bg-gray-800 dark:text-white">
|
||||
@error('name')<p class="mt-1 text-[10px] text-red-500 font-bold uppercase">{{ $message }}</p>@enderror
|
||||
</div>
|
||||
<div>
|
||||
<label for="email" class="block text-xs font-bold text-gray-400 dark:text-gray-500 uppercase tracking-widest mb-2">Email Address</label>
|
||||
<input type="email" name="email" id="email" required value="{{ old('email') }}"
|
||||
class="w-full rounded-2xl border-gray-200 bg-gray-50/50 px-5 py-4 text-sm text-gray-900 transition focus:ring-brand-500 focus:border-brand-500 dark:border-gray-700 dark:bg-gray-800 dark:text-white">
|
||||
@error('email')<p class="mt-1 text-[10px] text-red-500 font-bold uppercase">{{ $message }}</p>@enderror
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label for="category" class="block text-xs font-bold text-gray-400 dark:text-gray-500 uppercase tracking-widest mb-2">Category</label>
|
||||
<select name="category" id="category" required
|
||||
class="w-full rounded-2xl border-gray-200 bg-gray-50/50 px-5 py-4 text-sm text-gray-900 transition focus:ring-brand-500 focus:border-brand-500 dark:border-gray-700 dark:bg-gray-800 dark:text-white appearance-none">
|
||||
<option value="Technical Support">Technical Support</option>
|
||||
<option value="Legal Inquiry">Legal Inquiry</option>
|
||||
<option value="Partnership">Partnership</option>
|
||||
<option value="Other">Other</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label for="subject" class="block text-xs font-bold text-gray-400 dark:text-gray-500 uppercase tracking-widest mb-2">Subject</label>
|
||||
<input type="text" name="subject" id="subject" required value="{{ old('subject') }}"
|
||||
class="w-full rounded-2xl border-gray-200 bg-gray-50/50 px-5 py-4 text-sm text-gray-900 transition focus:ring-brand-500 focus:border-brand-500 dark:border-gray-700 dark:bg-gray-800 dark:text-white">
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label for="message" class="block text-xs font-bold text-gray-400 dark:text-gray-500 uppercase tracking-widest mb-2">Message</label>
|
||||
<textarea name="message" id="message" rows="4" required
|
||||
class="w-full rounded-2xl border-gray-200 bg-gray-50/50 px-5 py-4 text-sm text-gray-900 transition focus:ring-brand-500 focus:border-brand-500 dark:border-gray-700 dark:bg-gray-800 dark:text-white resize-none">{{ old('message') }}</textarea>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<button type="submit"
|
||||
class="flex w-full justify-center rounded-2xl bg-brand-500 px-4 py-5 text-sm font-bold text-white shadow-xl shadow-brand-500/30 hover:bg-brand-600 focus:outline-none focus:ring-2 focus:ring-brand-500 transition-all active:scale-[0.98]">
|
||||
Send Message
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<x-public.footer />
|
||||
</div>
|
||||
@endsection
|
||||
101
resources/views/pages/public/tools/app-key-generator.blade.php
Normal file
101
resources/views/pages/public/tools/app-key-generator.blade.php
Normal file
@@ -0,0 +1,101 @@
|
||||
@extends('layouts.fullscreen-layout', ['title' => 'Laravel APP_KEY Generator'])
|
||||
|
||||
@section('content')
|
||||
<div class="relative min-h-screen bg-white dark:bg-gray-900 transition-colors duration-300 overflow-hidden flex flex-col">
|
||||
<!-- Background Decoration -->
|
||||
<div class="absolute top-0 right-0 translate-x-1/2 -translate-y-1/2 w-[500px] h-[500px] bg-brand-500/10 rounded-full blur-[120px] pointer-events-none"></div>
|
||||
<div class="absolute bottom-0 left-0 -translate-x-1/2 translate-y-1/2 w-[600px] h-[600px] bg-blue-500/5 rounded-full blur-[150px] pointer-events-none"></div>
|
||||
|
||||
<x-public.navbar />
|
||||
|
||||
<main class="flex-grow pt-32 pb-20 px-4 relative z-10">
|
||||
<div class="max-w-2xl mx-auto space-y-12">
|
||||
<div class="text-center">
|
||||
<div class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-blue-50 dark:bg-blue-500/10 border border-blue-100 dark:border-blue-500/20 text-blue-600 dark:text-blue-400 text-[10px] font-bold uppercase tracking-widest mb-6">
|
||||
🔐 Security Utility
|
||||
</div>
|
||||
<h1 class="text-4xl md:text-5xl font-extrabold text-gray-900 dark:text-white mb-4">
|
||||
Key Generator
|
||||
</h1>
|
||||
<p class="text-gray-600 dark:text-gray-400 max-w-md mx-auto">
|
||||
Generate a production-ready 32-byte <code>APP_KEY</code> for your Laravel application securely in your browser.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div x-data="{
|
||||
generatedKey: '',
|
||||
copying: false,
|
||||
generate() {
|
||||
const array = new Uint8Array(32);
|
||||
window.crypto.getRandomValues(array);
|
||||
const binary = Array.from(array, byte => String.fromCharCode(byte)).join('');
|
||||
this.generatedKey = 'base64:' + btoa(binary);
|
||||
},
|
||||
copy() {
|
||||
if (!this.generatedKey) return;
|
||||
navigator.clipboard.writeText(this.generatedKey);
|
||||
this.copying = true;
|
||||
setTimeout(() => this.copying = false, 2000);
|
||||
}
|
||||
}" x-init="generate()" class="bg-white px-8 py-10 shadow-2xl rounded-[2.5rem] dark:bg-white/[0.03] border border-gray-100 dark:border-gray-800 backdrop-blur-sm">
|
||||
|
||||
<div class="space-y-8">
|
||||
<div>
|
||||
<label class="block text-xs font-bold text-gray-400 dark:text-gray-500 uppercase tracking-widest mb-4 text-center">Your Generated Security Key</label>
|
||||
<div class="relative group">
|
||||
<div class="w-full rounded-2xl border-gray-200 bg-gray-50/50 p-6 text-sm font-mono text-gray-900 transition dark:border-gray-700 dark:bg-gray-800/50 dark:text-white break-all text-center min-h-[60px] flex items-center justify-center"
|
||||
x-text="generatedKey || 'Generating...'">
|
||||
</div>
|
||||
|
||||
<button @click="copy()" x-show="generatedKey"
|
||||
class="absolute top-1/2 -right-4 -translate-y-1/2 p-4 bg-brand-500 text-white rounded-2xl shadow-xl shadow-brand-500/30 hover:scale-110 transition-all active:scale-95"
|
||||
title="Copy to clipboard">
|
||||
<svg x-show="!copying" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path></svg>
|
||||
<svg x-show="copying" style="display: none;" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" class="text-white"><polyline points="20 6 9 17 4 12"></polyline></svg>
|
||||
</button>
|
||||
|
||||
<div x-show="copying" x-transition style="display: none;" class="absolute -top-12 left-1/2 -translate-x-1/2 bg-brand-600 text-white text-[10px] font-bold px-4 py-1.5 rounded-full shadow-lg">
|
||||
COPIED TO CLIPBOARD
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="flex flex-col sm:flex-row gap-4 pt-4">
|
||||
<button @click="generate()"
|
||||
class="flex-1 rounded-2xl bg-gray-900 dark:bg-white text-white dark:text-gray-900 px-6 py-4 text-sm font-bold shadow-lg transition-all hover:-translate-y-0.5 active:scale-95">
|
||||
Generate New Key
|
||||
</button>
|
||||
<button @click="copy()"
|
||||
class="flex-1 rounded-2xl bg-brand-500 text-white px-6 py-4 text-sm font-bold shadow-lg shadow-brand-500/20 transition-all hover:-translate-y-0.5 active:scale-95">
|
||||
Copy to .env
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="p-6 bg-gray-50 dark:bg-gray-800/50 rounded-3xl border border-gray-100 dark:border-gray-700">
|
||||
<h4 class="text-xs font-bold text-gray-800 dark:text-white uppercase tracking-widest mb-3 flex items-center gap-2">
|
||||
Quick Guide
|
||||
</h4>
|
||||
<ul class="text-[11px] text-gray-500 dark:text-gray-400 space-y-2 font-medium">
|
||||
<li class="flex gap-2">
|
||||
<span class="text-brand-500 font-bold">1.</span>
|
||||
<div>Copy the generated key above.</div>
|
||||
</li>
|
||||
<li class="flex gap-2">
|
||||
<span class="text-brand-500 font-bold">2.</span>
|
||||
<div>Open your <code>.env</code> file in your Laravel project root.</div>
|
||||
</li>
|
||||
<li class="flex gap-2">
|
||||
<span class="text-brand-500 font-bold">3.</span>
|
||||
<div>Update the <code>APP_KEY=</code> variable with this key.</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<x-public.footer />
|
||||
</div>
|
||||
@endsection
|
||||
185
resources/views/pages/public/tools/chat-id-finder.blade.php
Normal file
185
resources/views/pages/public/tools/chat-id-finder.blade.php
Normal file
@@ -0,0 +1,185 @@
|
||||
@extends('layouts.fullscreen-layout', ['title' => 'Telegram Chat ID Finder'])
|
||||
|
||||
@section('content')
|
||||
<div class="relative min-h-screen bg-white dark:bg-gray-900 transition-colors duration-300 overflow-hidden flex flex-col">
|
||||
<!-- Background Decoration -->
|
||||
<div class="absolute top-0 left-0 -translate-x-1/2 -translate-y-1/2 w-[500px] h-[500px] bg-brand-500/10 rounded-full blur-[120px] pointer-events-none"></div>
|
||||
<div class="absolute bottom-0 right-0 translate-x-1/2 translate-y-1/2 w-[600px] h-[600px] bg-brand-500/5 rounded-full blur-[150px] pointer-events-none"></div>
|
||||
|
||||
<x-public.navbar />
|
||||
|
||||
<main class="flex-grow pt-32 pb-20 px-4 relative z-10">
|
||||
<div class="max-w-3xl mx-auto space-y-12">
|
||||
<div class="text-center">
|
||||
<div class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-brand-50 dark:bg-brand-500/10 border border-brand-100 dark:border-brand-500/20 text-brand-600 dark:text-brand-400 text-[10px] font-bold uppercase tracking-widest mb-6">
|
||||
🛠️ Developer Utility
|
||||
</div>
|
||||
<h1 class="text-4xl md:text-5xl font-extrabold text-gray-900 dark:text-white mb-4">
|
||||
Chat ID Finder
|
||||
</h1>
|
||||
<p class="text-gray-600 dark:text-gray-400 max-w-lg mx-auto">
|
||||
Quickly retrieve your Telegram Chat ID using your Bot Token. All processing happens locally in your browser.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div x-data="{
|
||||
botToken: '',
|
||||
chats: [],
|
||||
loading: false,
|
||||
error: '',
|
||||
copiedId: null,
|
||||
async findChats() {
|
||||
if (!this.botToken) {
|
||||
this.error = 'Please enter a Bot Token';
|
||||
return;
|
||||
}
|
||||
|
||||
this.loading = true;
|
||||
this.error = '';
|
||||
this.chats = [];
|
||||
|
||||
try {
|
||||
const response = await fetch(`https://api.telegram.org/bot${this.botToken}/getUpdates`);
|
||||
const data = await response.json();
|
||||
|
||||
if (!data.ok) {
|
||||
this.error = data.description || 'Invalid token or API error';
|
||||
return;
|
||||
}
|
||||
|
||||
if (data.result.length === 0) {
|
||||
this.error = 'No recent messages found. Please send a message to your bot first!';
|
||||
return;
|
||||
}
|
||||
|
||||
// Extract unique chats
|
||||
const uniqueChats = {};
|
||||
data.result.forEach(update => {
|
||||
const message = update.message || update.edited_message || update.callback_query?.message;
|
||||
if (message && message.chat) {
|
||||
uniqueChats[message.chat.id] = {
|
||||
id: message.chat.id,
|
||||
name: message.chat.title || message.chat.first_name || 'Group/Channel',
|
||||
username: message.chat.username ? `@${message.chat.username}` : 'N/A',
|
||||
type: message.chat.type
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
this.chats = Object.values(uniqueChats);
|
||||
|
||||
if (this.chats.length === 0) {
|
||||
this.error = 'Could not find any chat information in recent updates.';
|
||||
}
|
||||
} catch (err) {
|
||||
this.error = 'Network error. Please check your connection.';
|
||||
console.error(err);
|
||||
} finally {
|
||||
this.loading = false;
|
||||
}
|
||||
},
|
||||
copyToClipboard(text, id) {
|
||||
navigator.clipboard.writeText(text);
|
||||
this.copiedId = id;
|
||||
setTimeout(() => this.copiedId = null, 2000);
|
||||
}
|
||||
}" class="bg-white px-8 py-10 shadow-2xl rounded-[2.5rem] dark:bg-white/[0.03] border border-gray-100 dark:border-gray-800 backdrop-blur-sm">
|
||||
|
||||
<div class="space-y-8">
|
||||
<div>
|
||||
<label class="block text-xs font-bold text-gray-400 dark:text-gray-500 uppercase tracking-widest mb-4">Telegram Bot Token</label>
|
||||
<div class="relative group">
|
||||
<input
|
||||
type="text"
|
||||
x-model="botToken"
|
||||
placeholder="123456789:ABCDE..."
|
||||
class="w-full rounded-2xl border-gray-200 bg-gray-50/50 p-5 text-sm font-mono text-gray-900 transition focus:ring-brand-500 focus:border-brand-500 dark:border-gray-700 dark:bg-gray-800/50 dark:text-white"
|
||||
@keydown.enter="findChats()"
|
||||
/>
|
||||
<button
|
||||
@click="findChats()"
|
||||
class="absolute right-2 top-2 bottom-2 px-6 bg-brand-500 text-white text-xs font-bold rounded-xl hover:bg-brand-600 transition-all flex items-center justify-center gap-2 shadow-lg shadow-brand-500/20"
|
||||
:disabled="loading"
|
||||
>
|
||||
<span x-show="!loading">Fetch Updates</span>
|
||||
<svg x-show="loading" class="animate-spin h-4 w-4 text-white" fill="none" viewBox="0 0 24 24">
|
||||
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
|
||||
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Error Message -->
|
||||
<div x-show="error" x-transition x-cloak class="p-4 rounded-2xl bg-red-50 dark:bg-red-500/10 border border-red-100 dark:border-red-500/20 text-red-600 dark:text-red-400 text-sm flex gap-3">
|
||||
<svg class="h-5 w-5 flex-shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||
</svg>
|
||||
<span x-text="error"></span>
|
||||
</div>
|
||||
|
||||
<!-- Detected Chats -->
|
||||
<div x-show="chats.length > 0" x-transition x-cloak class="space-y-4">
|
||||
<h3 class="text-sm font-bold text-gray-900 dark:text-white flex items-center gap-2">
|
||||
Detected Chats
|
||||
<span class="px-2 py-0.5 bg-brand-50 dark:bg-brand-500/20 text-brand-600 dark:text-brand-400 text-[10px] rounded-full" x-text="chats.length"></span>
|
||||
</h3>
|
||||
<div class="overflow-hidden rounded-2xl border border-gray-100 dark:border-gray-800">
|
||||
<table class="w-full text-left text-sm">
|
||||
<thead class="bg-gray-50/50 dark:bg-gray-800/50">
|
||||
<tr>
|
||||
<th class="px-5 py-4 font-bold text-gray-500 dark:text-gray-400 uppercase text-[10px] tracking-wider">Chat Identity</th>
|
||||
<th class="px-5 py-4 font-bold text-gray-500 dark:text-gray-400 uppercase text-[10px] tracking-wider">Numeric ID</th>
|
||||
<th class="px-5 py-4"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="divide-y divide-gray-100 dark:divide-gray-800">
|
||||
<template x-for="chat in chats" :key="chat.id">
|
||||
<tr class="hover:bg-gray-50/50 dark:hover:bg-gray-800/20 transition-colors group">
|
||||
<td class="px-5 py-4">
|
||||
<div class="font-bold text-gray-900 dark:text-white" x-text="chat.name"></div>
|
||||
<div class="text-[11px] text-gray-500 dark:text-gray-500 font-mono" x-text="chat.username"></div>
|
||||
</td>
|
||||
<td class="px-5 py-4">
|
||||
<code class="px-2 py-1 bg-gray-100 dark:bg-gray-800 text-brand-600 dark:text-brand-400 rounded-lg font-mono text-xs font-bold" x-text="chat.id"></code>
|
||||
</td>
|
||||
<td class="px-5 py-4 text-right">
|
||||
<button
|
||||
@click="copyToClipboard(chat.id, chat.id)"
|
||||
class="p-2.5 rounded-xl bg-gray-50 dark:bg-gray-800 text-gray-400 hover:text-brand-500 dark:hover:text-brand-400 transition-all border border-gray-100 dark:border-gray-700 active:scale-90"
|
||||
>
|
||||
<svg x-show="copiedId !== chat.id" class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 5H6a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2v-1M8 5a2 2 0 002 2h2a2 2 0 002-2M8 5a2 2 0 012-2h2a2 2 0 012 2m0 0h2a2 2 0 012 2v3" />
|
||||
</svg>
|
||||
<svg x-show="copiedId === chat.id" class="h-4 w-4 text-green-500" fill="none" viewBox="0 0 24 24" stroke="currentColor" style="display: none;">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
|
||||
</svg>
|
||||
</button>
|
||||
</td>
|
||||
</tr>
|
||||
</template>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="p-6 bg-brand-50/50 dark:bg-brand-500/5 rounded-3xl border border-brand-100 dark:border-brand-500/10">
|
||||
<h4 class="text-xs font-bold text-brand-600 dark:text-brand-400 uppercase tracking-widest mb-4 flex items-center gap-2">
|
||||
<svg class="w-4 h-4" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /></svg>
|
||||
Instructions
|
||||
</h4>
|
||||
<ol class="text-xs text-gray-600 dark:text-gray-400 space-y-3 list-decimal ml-4 font-medium">
|
||||
<li>Send a message (e.g., "Hello") to your Bot from the account or group you want the ID from.</li>
|
||||
<li>Paste your <strong>Bot Token</strong> above and click <strong>Fetch Updates</strong>.</li>
|
||||
<li>Your <code>CHAT_ID</code> will appear in the table. Copy it for use in your API or integrations.</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<x-public.footer />
|
||||
</div>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user