@php
$winners = [
['category' => 'Lifetime Achievement Award', 'year' => '2024', 'name' => 'Prof. Eleanor Vance', 'affiliation' => 'University of Oxford, UK', 'reason' => 'For her 40-year dedication to advancing cognitive linguistics.', 'img' => '1573496359142-b8d87734a5a2'],
['category' => 'Best Research Paper', 'year' => '2024', 'name' => 'Dr. Haruto Tanaka', 'affiliation' => 'Tokyo Institute of Technology', 'reason' => '“Quantum Computing in Next-Gen Data Encryption”', 'img' => '1560250097-0b93528c311a'],
['category' => 'Outstanding Presenter', 'year' => '2024', 'name' => 'Sarah Johnson & Team', 'affiliation' => 'Stanford University, USA', 'reason' => 'Exceptional delivery and interactive data visualization.', 'img' => '1580489944761-15a19d654956'],
['category' => 'Best Student Paper', 'year' => '2023', 'name' => 'Michael Chang', 'affiliation' => 'National University of Singapore', 'reason' => '“AI-driven Approaches to Sustainable Agriculture in SEA”', 'img' => '1507003211169-0a1dd7228f2d'],
['category' => 'Innovation Award', 'year' => '2023', 'name' => 'Dr. Elena Rostova', 'affiliation' => 'ETH Zurich, Switzerland', 'reason' => 'Breakthrough methodology in biodegradable polymers.', 'img' => '1573497019940-1c28c88b4f3e'],
['category' => 'Lifetime Achievement Award', 'year' => '2022', 'name' => 'Prof. Rajesh Kumar', 'affiliation' => 'IIT Delhi, India', 'reason' => 'Pioneering work in socio-economic frameworks.', 'img' => '1472099645785-5658abf4ff4e'],
];
@endphp
@foreach($winners as $w)
{{ $w['category'] }}
{{ $w['year'] }}
{{ $w['name'] }}
{{ $w['affiliation'] }}
Reason for Award
"{{ $w['reason'] }}"
@endforeach