@php $projects = [ [ 'slug' => 'ded-building-of-podomoro-station', 'title' => 'DED Building of Podomoro Station', 'location' => 'Tenjo, Bogor', 'category' => 'stasiun-kereta', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'MEP System'], ], [ 'slug' => 'ded-building-of-padalarang-station', 'title' => 'DED Building of Padalarang Station', 'location' => 'Bandung', 'category' => 'stasiun-kereta', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Electrical System'], ], [ 'slug' => 'ded-building-of-rusun-metro', 'title' => 'DED Building of Rusun Metro', 'location' => 'Kedaung, Tangerang', 'category' => 'rusun', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Plumbing System'], ], [ 'slug' => 'ded-building-of-rusun-bnn', 'title' => 'DED Building of Rusun BNN', 'location' => 'South Jakarta', 'category' => 'rusun', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Security System'], ], [ 'slug' => 'ded-building-of-i-house', 'title' => 'DED Building of I House', 'location' => 'Jagakarsa', 'category' => 'residensial', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Interior Design'], ], [ 'slug' => 'ded-building-of-tk-cita-global', 'title' => 'DED Building of Cita Global Kindergarten', 'location' => 'Tangerang', 'category' => 'pendidikan', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Security System'], ], [ 'slug' => 'ded-building-of-tropicana-residence', 'title' => 'DED Building of Tropicana Residence', 'location' => 'Cikarang', 'category' => 'apartemen', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'MEP System'], ], [ 'slug' => 'ded-building-of-la-house', 'title' => 'DED Building of LA House', 'location' => 'Cikarang', 'category' => 'residensial', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Landscape Design'], ], [ 'slug' => 'ded-of-jatipadang-house', 'title' => 'DED of Jatipadang House', 'location' => 'South Jakarta', 'category' => 'residensial', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture'], ], [ 'slug' => 'ded-building-of-rusun-asn-pupr', 'title' => 'DED Building of ASN PUPR Housing', 'location' => 'Semarang', 'category' => 'rusun', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'MEP System'], ], [ 'slug' => 'ded-building-of-ppkd', 'title' => 'DED Building of PPKD', 'location' => 'East Jakarta', 'category' => 'pemerintahan', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Security System'], ], [ 'slug' => 'ded-building-of-rusun-mbr', 'title' => 'DED Building of MBR Housing', 'location' => 'Surakarta', 'category' => 'rusun', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Plumbing System'], ], ]; @endphp @foreach ($projects as $project)
{{ ucfirst(str_replace('-', ' ', $project['category'])) }}
{{ $project['year'] }}

{{ $project['title'] }}

{{ ucfirst(str_replace('-', ' ', $project['category'])) }}
{{ $project['location'] }}
@foreach ($project['scope'] as $item) {{ $item }} @endforeach
View Project Details
@endforeach