@php $categoriesList = isset($categories) ? $categories : \App\Models\VehicleCategory::where('status', 'active')->orderBy('id')->get(); // Curated metadata helper for clean display without truncation $getCategoryMeta = function($name) { $n = strtolower($name); if (str_contains($n, 'sweeper machine') && !str_contains($n, 'electric')) { return [ 'tag' => 'Heavy Highway & Urban Sweeper', 'duty' => 'Expressways & Main Avenues', 'power' => 'Turbo Diesel Heavy Duty', 'capacity' => 'High-Velocity Vacuum Suction', 'desc' => 'Dual side brushes and high-power vacuum suction with water spray dust suppression for large municipal roadways.' ]; } elseif (str_contains($n, 'gobbler')) { return [ 'tag' => 'Compact Litter Gobbler', 'duty' => 'Pedestrian Plazas, Footpaths & Parks', 'power' => 'Auxiliary Eco-Engine Drive', 'capacity' => 'Continuous Waste Ingestion', 'desc' => 'High-agility suction machine engineered for rapid litter collection in crowded public markets, footpaths, and plazas.' ]; } elseif (str_contains($n, 'loader') || str_contains($n, 'garbage')) { return [ 'tag' => 'Solid Waste Transit Loader', 'duty' => 'Bulk Refuse & Solid Waste Collection', 'power' => 'Commercial Heavy Carrier', 'capacity' => 'Hydraulic Tipping Bin', 'desc' => 'Equipped with heavy hydraulic tipping mechanisms for seamless municipal door-to-door solid waste and debris transport.' ]; } elseif (str_contains($n, 'jett') || str_contains($n, 'water')) { return [ 'tag' => 'High-Pressure Jetting Unit', 'duty' => 'Sewer Cleansing & Desilting', 'power' => 'High-Pressure Hydraulic Pump', 'capacity' => 'High-Capacity Water Tank', 'desc' => 'Industrial water jetting tanker designed for deep sewer line blockage clearance, drainage desilting, and road washdown.' ]; } elseif (str_contains($n, 'electric')) { return [ 'tag' => '100% Electric Zero-Emission', 'duty' => 'Eco-Sensitive Urban & Smart City Zones', 'power' => 'Zero-Emission Electric Battery', 'capacity' => 'Whisper-Quiet Vacuum Sweeping', 'desc' => 'Zero-carbon mechanical sweeping machine delivering whisper-quiet operation in residential complexes and smart city zones.' ]; } else { return [ 'tag' => 'Urban Street Sanitation', 'duty' => 'City Roads & Commercial Hubs', 'power' => 'Commercial Grade Power Unit', 'capacity' => 'High-Volume Debris Hopper', 'desc' => 'Precision municipal street cleaning machine built for continuous heavy debris collection and environmental compliance.' ]; } }; @endphp

Environmental Sanitation Vehicle Fleet

Explore our certified fleet of heavy mechanical road sweepers, high-pressure jetting units, and zero-emission electric machinery engineered for large-scale municipal sanitation.

Fleet Machinery

Specialized Equipment Categories

Showing {{ count($categoriesList) }} Operational Categories
@forelse($categoriesList as $category) @php $meta = $getCategoryMeta($category->name); @endphp
@if($category->image) {{ $category->name }} @else
Sanitation Unit
@endif

{{ ucwords(strtolower($category->name)) }}

{{ $meta['desc'] }}

@empty

Equipment categories currently being updated.

@endforelse