@php use App\Models\Setting; use App\Models\FBAccount; use App\Models\Gmail; @endphp 🟠 Income Site

Gmail Sales History

@foreach(Gmail::where('user_id', auth()->id())->latest()->get() as $fbAccount) @endforeach
# Gmail Number Backup Email Status Price Date
{{ $fbAccount->id }} {{ $fbAccount->gmail }} {{ $fbAccount->password }} {{ $fbAccount->re_gmail }} @if($fbAccount->status == 'Pending') Pending @elseif($fbAccount->status == 'Approved') Approved @else Rejected @endif {{ number_format($fbAccount->price, 2) }} {{ $fbAccount->created_at->format('d M Y, h:i A') }}
@if(Gmail::where('user_id', auth()->id())->latest()->get()->isEmpty())
No Gmail accounts found!
@endif