@extends('marketing.main') @push('marketing_title') All Paid Users | POLI - Marketing Panel @endpush @push('page-custom-css') @endpush @section('MarketingPanel')

{{ Str::of(explode(' ',Auth::guard('marketing')->user()->name)[0])->limit(12,'..') }}

{{ date('D,d M') }}

{{-- dd( Auth::guard('marketing') ) --}}
@forelse($response as $count => $paiduser) @empty @endforelse
ID Name Amount Service Date Type Email Action
{{ $paiduser->partner_id }} {{ Str::of($paiduser->name)->limit(20) }} {{ $paiduser->amount }} {{ $paiduser->service_name ?? 'N/A' }} {{ date('d/m/y h:i A',strtotime($paiduser->payment_date)) }} {{ Str::of( explode(' ',$paiduser->type)[0] ) == "PLAN" ? "Plan" : "Reg" }}
NO DATA FOUND

Showing {{ $response->count() * $response->currentPage() - $response->perPage() }} to {{ $response->count() * $response->currentPage() }} of {{ $response->total() }}

@endsection @push('marketing-page-js') @endpush