@extends('backend.layouts.app') @section('content')

Send Notifications

{{-- Stats --}}
Total Shown
{{ $userList->total() }}
Selected
0
All Filtered IDs
{{ count($userIds) }}
{{-- Card Header --}}
User List
@can('send_notification') @endcan ✕ Clear
{{-- Seller Filters --}}
🏊 Seller Filters
Seller Created Date
Seller Expire Date
{{-- Customer Filters --}}
ðŸ‘Ī Customer Filters
Affiliates Created Date
Affiliates Expired Date
{{-- Selected Bar --}}
0 users selected
@can('send_notification') @endcan
{{-- Table --}}
@foreach($userList as $value) @endforeach
{{ translate('User') }} {{ translate('Phone') }} {{ translate('Type') }} {{ translate('Package') }} {{ translate('Location') }}
{{ strtoupper(substr($value->name ?? 'U', 0, 1)) }}
{{ $value->name ?? 'N/A' }}
{{ $value->email }}
{{ $value->phone }} {{ ucfirst($value->user_type) }} @if($value->user_type == 'seller') {{ @$value->shop->seller_package->name ?? '—' }} @else {{ @$value->affiliate->partner_type ?? '—' }} @endif {{ implode(', ', array_filter([$value->city, $value->district, $value->state])) ?: '—' }}
ðŸ’Ą Tip: Pagination ā°ēāą‹ page change ā°šāą‡ā°ļāąā°Īāą‡ current page selection reset ā°…ā°ĩāąā°Īāąā°‚ā°Ķā°ŋ. ā°…ā°Ļāąā°Ļā°ŋ pages users ā°•ā°ŋ ā°Šā°‚ā°Šā°ūā°ēā°‚ā°Ÿāą‡ "☑ Select All ({{ count($userIds) }})" button use ā°šāą‡ā°Ŋā°‚ā°Ąā°ŋ.
{{ $userList->appends(request()->input())->links() }}
@endsection @section('modal') {{-- Send Notification Modal --}} {{-- Send Email Modal --}} @endsection @section('script') @endsection