@extends('layouts.app') @section('title', 'Waste Weight Estimator') @push('styles') @endpush @section('content')
Select your waste items:
@foreach([ ['🍶','Plastic Bottles','1 bottle ≈ 0.025 kg',0.025,'plastic'], ['📦','Cardboard Box','1 box ≈ 0.5 kg',0.5,'cardboard'], ['🗞️','Newspaper/Paper','1 bundle ≈ 0.3 kg',0.3,'paper'], ['🥫','Metal Cans','1 can ≈ 0.015 kg',0.015,'metal'], ['🍾','Glass Bottles','1 bottle ≈ 0.3 kg',0.3,'glass'], ['📱','Old Phone','1 phone ≈ 0.15 kg',0.15,'ewaste'], ['💻','Laptop/Computer','1 unit ≈ 2.5 kg',2.5,'ewaste'], ['🛍️','Plastic Bags','10 bags ≈ 0.1 kg',0.1,'plastic'], ['🪣','Bucket/Container','1 unit ≈ 0.4 kg',0.4,'plastic'], ['🔋','Batteries','1 pack ≈ 0.2 kg',0.2,'ewaste'], ['👕','Old Clothes','1 kg bag ≈ 1 kg',1.0,'textile'], ['🪑','Furniture','1 chair ≈ 5 kg',5.0,'mixed'], ] as [$icon,$name,$unit,$kg,$type])
{{ $icon }}
{{ $name }}
{{ $unit }}
@endforeach
{{-- Custom item --}}
Add Custom Item
{{-- Result Panel --}}
Estimated Weight
0.0 kg
≈ 0 NC
0 kg CO₂ saved
Schedule Pickup Use Smart Machine
How Coins Work
• Pickup: ~10 NC per kg confirmed
• Machine code: fixed value per code
• Premium: 2x coins on all pickups
• Min pickup: 0.5 kg recommended
@push('scripts') @endpush @endsection