@extends('web.home.layout.master') @section('content')
Sustainably Made

Green Cycle Rewards

Revolutionizing recycling. Return your used American Plastic products and earn exclusive rewards for saving the planet.

@if(Auth::check())
Your Portfolio {{ number_format($userPoints, 2) }} Points
@else @endif
01

Sort & Collect

Gather your used American Plastic containers and products. Ensure they are clean and sorted.

02

Request Pickup

Fill out the digital request form below. Attach photos and details of your collection.

03

Earn Points

Receive eco-points after verification. Redeem them for discounts on your next eco-friendly purchase.

@if(Auth::check())

Recycling Submission

@csrf
Pending Pts Reward

Click or drag image to upload products photo

Eco Dashboard

Total Points

{{ number_format($userPoints, 2) }}

Approved {{ $recentRequests->whereIn('status', ['approved', 'completed'])->count() }}
Pending {{ $recentRequests->whereIn('status', ['pending', 'collecting'])->count() }}

Recent History

@forelse($recentRequests as $request)
{{ $request->product_name ?? ($request->productcolor->product->product_name ?? 'N/A') }}
{{ ucfirst($request->status) }}
{{ $request->created_at->diffForHumans() }} +{{ number_format($request->total_points, 2) }} Pts
@empty

No recycling activity yet.

@endforelse
@else

Ready to Join the Movement?

Log in to access your recycling dashboard, track your contributions, and start converting your used products into real store rewards.

@endif
@endsection