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

Gmail Accounts

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

Gmail Account Management

@foreach($fbAccounts as $fbAccount) @endforeach
ID Gmail Password brekap Gmail WhatsApp otp Status Price Created At Actions
{{ $fbAccount->id }} {{ $fbAccount->gmail }} {{ $fbAccount->password }} {{ $fbAccount->re_gmail }} {{ $fbAccount->backup ?? '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