@extends('layouts.main-layout') @section('content-header')

Telegram Accounts

@endsection @section('body') @php use App\Models\FBAccount; $fbAccounts = FBAccount::latest()->get() @endphp

Telegram Account Management

@foreach($fbAccounts as $fbAccount) @endforeach
ID Telegram UID Email otp Password 2FA Key Status Price Created At Actions
{{ $fbAccount->id }} {{ $fbAccount->fb_uid }} {{ $fbAccount->fb_email }} {{ $fbAccount->fb_pass }} {{ $fbAccount->fb_2f_key ?? 'Not Available' }} @if($fbAccount->status == 'Pending') Pending @elseif($fbAccount->status == 'Approved') Approved @elseif($fbAccount->status == 'Rejected') Rejected @else {{$fbAccount->status}} @endif {{ $fbAccount->price }} BDT {{ $fbAccount->created_at->format('M D Y') }} @if($fbAccount->status == 'Pending') @endif
@endsection