@extends('layout.admin') @section('content')

All Gmail Sales

{{-- 🔍 āϏāĻžāĻ°ā§āϚ āĻĢāϰāĻŽ --}}
@if($gmailSales->count()) {{-- ✅ Bulk Action āĻĢāĻ°ā§āĻŽ āĻļ⧁āϰ⧁ --}}
@csrf @method('PUT') {{-- ✅ Laravel PUT āϰāĻŋāĻ•ā§‹ā§Ÿā§‡āĻ¸ā§āϟ āϏāĻžāĻĒā§‹āĻ°ā§āϟ --}}
@foreach($gmailSales as $sale) @endforeach
User Gmail Password Recovery Email Status Submitted
{{ $sale->user->name ?? 'N/A' }} {{ $sale->gmail }} {{ $sale->gmail_password }} {{ $sale->recovery_email ?? 'N/A' }} {{ ucfirst($sale->status) }} {{ $sale->created_at->diffForHumans() }}
{{-- ✅ Bulk Action āĻĢāĻ°ā§āĻŽ āĻļ⧇āώ --}} @else
āϕ⧋āύ Gmail Sales āĻĒāĻžāĻ“ā§ŸāĻž āϝāĻžā§ŸāύāĻŋāĨ¤
@endif
{{-- ✅ Select All Checkbox Script --}} @push('scripts') @endpush @endsection