@php
$speakers = [
['img'=>'1573496359142-b8d87734a5a2', 'name'=>'Prof. Sarah Anderson', 'field'=>'AI & Cognitive Science', 'country'=>'Harvard University, USA'],
['img'=>'1560250097-0b93528c311a', 'name'=>'Dr. James Chen', 'field'=>'Renewable Energy', 'country'=>'MIT, Singapore'],
['img'=>'1580489944761-15a19d654956', 'name'=>'Dr. Emily Williams', 'field'=>'Cognitive Science', 'country'=>'Oxford University, UK'],
['img'=>'1507003211169-0a1dd7228f2d', 'name'=>'Prof. Michael Brown', 'field'=>'Cybersecurity', 'country'=>'ETH Zurich, Switzerland'],
['img'=>'1573497019940-1c28c88b4f3e', 'name'=>'Dr. Lisa Davis', 'field'=>'Biotechnology', 'country'=>'Stanford, USA'],
['img'=>'1472099645785-5658abf4ff4e', 'name'=>'Prof. Robert Kumar', 'field'=>'Economics', 'country'=>'IIT Delhi, India'],
['img'=>'1487412720507-e7ab37603c6f', 'name'=>'Dr. Maria Costa', 'field'=>'Social Sciences', 'country'=>'University of Lisbon, Portugal'],
['img'=>'1500648767791-00dcc994a43e', 'name'=>'Prof. David Lee', 'field'=>'Engineering', 'country'=>'Seoul National University, Korea'],
];
@endphp
@foreach($speakers as $s)
{{ $s['name'] }}
{{ $s['field'] }}
Affiliation
{{ $s['country'] }}
@endforeach