@php
$categoryText = match((int) $recycleActivity->recycle_category) {
1 => '1 - Polyethylene Terephthalate (PET) Eg: Water bottle, Plastic Tray',
2 => '2 - High Density Polyethylene (HDPE) Eg: milk cartons, shampoo bottles',
3 => '3 - Polyvinyl Chloride (PVC) Eg: pipes, vinyl flooring',
4 => '4 - Low Density Polyethylene (LDPE) Eg: food bags',
5 => '5 - Polypropylene (PP) Eg: lunch box, ready-meal trays',
6 => '6 - Polystyrene (PS) Eg: disposable plates, cups',
7 => '7 - Others',
default => 'Unknown Category',
};
@endphp
@error('recycle_category')
{{ $message }}
@enderror