Portofolio

Proyek Unggulan Kami

Beberapa proyek yang telah kami selesaikan dengan hasil yang memuaskan klien.

@php $all_projects = [ [ 'title' => 'DED BUILDING OF PODOMORO STATION', 'location' => 'Tenjo, Bogor', 'category' => 'Stasiun Kereta', 'year' => '2024', 'scope' => ['Desain Struktural', 'Arsitektur'], 'url' => 'ded-building-of-podomoro-station', ], [ 'title' => 'DED BUILDING OF PADALARANG STATION', 'location' => 'Bandung', 'category' => 'Stasiun Kereta', 'year' => '2024', 'scope' => ['Desain Struktural', 'DED'], 'url' => 'ded-building-of-padalarang-station', ], [ 'title' => 'DED BUILDING OF RUSUN METRO', 'location' => 'Kedaung Tangerang', 'category' => 'Rusunawa', 'year' => '2024', 'scope' => ['Desain Struktural', 'Arsitektur'], 'url' => 'ded-building-of-rusun-metro', ], [ 'title' => 'DED BUILDING OF RUSUN BNN', 'location' => 'Jakarta Selatan', 'category' => 'Rusun Khusus', 'year' => '2024', 'scope' => ['Desain Struktural', 'MEP'], 'url' => 'ded-building-of-rusun-bnn', ], [ 'title' => 'DED BUILDING OF I HOUSE', 'location' => 'Jagakarsa', 'category' => 'Residensial', 'year' => '2024', 'scope' => ['Desain Struktural', 'Arsitektur'], 'url' => 'ded-building-of-i-house', ], [ 'title' => 'DED BUILDING OF TK CITA GLOBAL', 'location' => 'Tangerang', 'category' => 'Pendidikan', 'year' => '2024', 'scope' => ['Desain Struktural', 'Arsitektur'], 'url' => 'ded-building-of-tk-cita-global', ], [ 'title' => 'DED BUILDING OF TROPICANA RESIDENCE', 'location' => 'Cikarang', 'category' => 'Apartemen', 'year' => '2024', 'scope' => ['Desain Struktural', 'Arsitektur'], 'url' => 'ded-building-of-tropicana-residence', ], [ 'title' => 'DED BUILDING OF LA HOUSE', 'location' => 'Cikarang', 'category' => 'Residensial', 'year' => '2024', 'scope' => ['Desain Struktural', 'DED'], 'url' => 'ded-building-of-la-house', ], [ 'title' => 'DED OF JATIPADANG HOUSE', 'location' => 'Jakarta Selatan', 'category' => 'Residensial', 'year' => '2024', 'scope' => ['Desain Struktural', 'DED'], 'url' => 'ded-of-jatipadang-house', ], [ 'title' => 'DED BUILDING OF RUSUN ASN PUPR', 'location' => 'Semarang', 'category' => 'Rusun ASN', 'year' => '2024', 'scope' => ['Desain Struktural', 'MEP'], 'url' => 'ded-building-of-rusun-asn-pupr', ], [ 'title' => 'DED BUILDING OF PPKD', 'location' => 'Jakarta Timur', 'category' => 'Pemerintahan', 'year' => '2024', 'scope' => ['Desain Struktural', 'DED'], 'url' => 'ded-building-of-ppkd', ], [ 'title' => 'DED BUILDING OF RUSUN MBR', 'location' => 'Surakarta', 'category' => 'Rusun MBR', 'year' => '2024', 'scope' => ['Desain Struktural', 'MEP'], 'url' => 'ded-building-of-rusun-mbr', ], ]; // Acak proyek untuk ditampilkan (3 proyek acak) $random_projects = collect($all_projects)->shuffle()->take(3); // Warna untuk background gradient $colors = [ 'from-blue-400/30 to-blue-600/30', 'from-green-400/30 to-green-600/30', 'from-purple-400/30 to-purple-600/30', 'from-yellow-400/30 to-yellow-600/30', 'from-red-400/30 to-red-600/30', 'from-indigo-400/30 to-indigo-600/30', ]; @endphp
@foreach ($random_projects as $index => $project)
{{ $project['category'] }}

{{ $project['title'] }}

{{ $project['location'] }} {{ $project['year'] }}
@foreach ($project['scope'] as $item) {{ $item }} @endforeach
@endforeach