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

Associates

{{--

--}} @forelse ($associates as $key=>$associate) @php $purchase_plan = App\Models\PlanPurchase::where('user_id',$associate->id)->with('plan')->first(); @endphp @empty @endforelse
# Name Email Enrollment Date & Time Contact No PackageName Amount
{{($key+1) + ($associates->currentPage() - 1)*$associates->perPage()}} {{$associate->name}} {{$associate->email}} {{$associate->created_at->format('d-M-Y H:i')}} {{$associate->phone}}{{$purchase_plan->plan->title}} ₹ {{$purchase_plan->amount}}

Nothing Found

{!! $associates->links() !!}
@endsection