@php
$projects = [
[
'slug' => 'ded-building-of-podomoro-station',
'title' => 'DED Building of Podomoro Station',
'location' => 'Tenjo, Bogor',
'category' => 'stasiun-kereta',
'year' => '2024',
'scope' => ['Desain Struktural', 'Arsitektur', 'Sistem MEP'],
],
[
'slug' => 'ded-building-of-padalarang-station',
'title' => 'DED Building of Padalarang Station',
'location' => 'Bandung',
'category' => 'stasiun-kereta',
'year' => '2024',
'scope' => ['Desain Struktural', 'Arsitektur', 'Sistem Elektrikal'],
],
[
'slug' => 'ded-building-of-rusun-metro',
'title' => 'DED Building of Rusun Metro',
'location' => 'Kedaung Tangerang',
'category' => 'rusun',
'year' => '2024',
'scope' => ['Desain Struktural', 'Arsitektur', 'Sistem Plumbing'],
],
[
'slug' => 'ded-building-of-rusun-bnn',
'title' => 'DED Building of Rusun BNN',
'location' => 'Jakarta Selatan',
'category' => 'rusun',
'year' => '2024',
'scope' => ['Desain Struktural', 'Arsitektur', 'Sistem Keamanan'],
],
[
'slug' => 'ded-building-of-i-house',
'title' => 'DED Building of I House',
'location' => 'Jagakarsa',
'category' => 'residensial',
'year' => '2024',
'scope' => ['Desain Struktural', 'Arsitektur', 'Interior Design'],
],
[
'slug' => 'ded-building-of-tk-cita-global',
'title' => 'DED Building of TK Cita Global',
'location' => 'Tangerang',
'category' => 'pendidikan',
'year' => '2024',
'scope' => ['Desain Struktural', 'Arsitektur', 'Sistem Keamanan'],
],
[
'slug' => 'ded-building-of-tropicana-residence',
'title' => 'DED Building of Tropicana Residence',
'location' => 'Cikarang',
'category' => 'apartemen',
'year' => '2024',
'scope' => ['Desain Struktural', 'Arsitektur', 'Sistem MEP'],
],
[
'slug' => 'ded-building-of-la-house',
'title' => 'DED Building of LA House',
'location' => 'Cikarang',
'category' => 'residensial',
'year' => '2024',
'scope' => ['Desain Struktural', 'Arsitektur', 'Landscape Design'],
],
[
'slug' => 'ded-of-jatipadang-house',
'title' => 'DED of Jatipadang House',
'location' => 'Jakarta Selatan',
'category' => 'residensial',
'year' => '2024',
'scope' => ['Desain Struktural', 'Arsitektur'],
],
[
'slug' => 'ded-building-of-rusun-asn-pupr',
'title' => 'DED Building of Rusun ASN PUPR',
'location' => 'Semarang',
'category' => 'rusun',
'year' => '2024',
'scope' => ['Desain Struktural', 'Arsitektur', 'Sistem MEP'],
],
[
'slug' => 'ded-building-of-ppkd',
'title' => 'DED Building of PPKD',
'location' => 'Jakarta Timur',
'category' => 'pemerintahan',
'year' => '2024',
'scope' => ['Desain Struktural', 'Arsitektur', 'Sistem Keamanan'],
],
[
'slug' => 'ded-building-of-rusun-mbr',
'title' => 'DED Building of Rusun MBR',
'location' => 'Surakarta',
'category' => 'rusun',
'year' => '2024',
'scope' => ['Desain Struktural', 'Arsitektur', 'Sistem Plumbing'],
],
];
@endphp
@foreach ($projects as $project)
{{ $project['category'] }}
{{ $project['year'] }}
{{ $project['title'] }}
{{ $project['category'] }}
{{ $project['location'] }}
@foreach ($project['scope'] as $item)
{{ $item }}
@endforeach
Lihat Detail Proyek
@endforeach