@if($logoBase64)

@endif
Project Proposal
{{ $proposal->title ?? 'DIGITAL TRANSFORMATION' }}
Prepared For
{{ $proposal->client_name }}
@php
$sections = [
['id' => 1, 'title' => 'Ringkasan Eksekutif', 'content' => $proposal->executive_summary, 'type' => 'magazine'],
['id' => 2, 'title' => 'Latar Belakang & Masalah', 'content' => $proposal->problem_analysis, 'type' => 'magazine'],
['id' => 3, 'title' => 'Tujuan Proyek', 'content' => $proposal->project_objectives, 'type' => 'magazine'],
['id' => 4, 'title' => 'Solusi Utama', 'content' => $proposal->solutions, 'type' => 'grid'],
['id' => 5, 'title' => 'Ruang Lingkup (Deliverables)', 'content' => $proposal->scope_of_work, 'type' => 'grid'],
['id' => 6, 'title' => 'Alur Sistem & Cara Kerja', 'content' => $proposal->system_walkthrough, 'type' => 'grid'],
['id' => 7, 'title' => 'Timeline Implementasi', 'content' => $proposal->timeline, 'type' => 'sidebar'],
['id' => 8, 'title' => 'Estimasi Investasi Proyek', 'content' => $proposal->investment ?? $proposal->pricing, 'type' => 'sidebar'],
['id' => 9, 'title' => 'Estimasi Dampak & ROI', 'content' => $proposal->roi_impact, 'type' => 'sidebar'],
['id' => 10, 'title' => 'Nilai Tambah Agensi', 'content' => $proposal->value_add, 'type' => 'magazine'],
['id' => 11, 'title' => 'Penutup & Kerja Sama', 'content' => $proposal->closing_cta, 'type' => 'cover'],
];
@endphp
@foreach($sections as $section)
@if($section['type'] == 'magazine')
@if($section['id'] == 1)
EXECUTIVE SUMMARY
Ringkasan tingkat tinggi solusi untuk {{ $proposal->client_name }}.
@endif
{!! $section['content'] !!}
{{ $loop->iteration + 1 }}
@elseif($section['type'] == 'grid')
{!! $section['content'] !!}
CODE_SYNC_V17
PAGE {{ $loop->iteration + 1 }}
@elseif($section['type'] == 'sidebar')
@elseif($section['type'] == 'cover')
@if($logoBase64)

@endif
LET'S START
Hubungi kami untuk memulai transformasi.
admin.thedarkandbright.com
{!! $section['content'] !!}
@endif
@endforeach