@php $logoPathLocal = public_path('images/logo-dnb.png'); $logoBase64 = null; if (file_exists($logoPathLocal)) { $type = pathinfo($logoPathLocal, PATHINFO_EXTENSION); $data = file_get_contents($logoPathLocal); $logoBase64 = 'data:image/' . $type . ';base64,' . base64_encode($data); } @endphp
Proposal
{{ date('Y') }}
@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')
{{ $section['title'] }}
SECTION {{ sprintf('%02d', $section['id']) }}
@if($section['id'] == 1)
EXECUTIVE SUMMARY
Ringkasan tingkat tinggi solusi untuk {{ $proposal->client_name }}.
@endif
{!! $section['content'] !!}
{{ $loop->iteration + 1 }}
@elseif($section['type'] == 'grid')
Our Solution Phase
{{ $section['title'] }}
{!! $section['content'] !!}
CODE_SYNC_V17
PAGE {{ $loop->iteration + 1 }}
@elseif($section['type'] == 'sidebar')
{{ sprintf('%02d', $section['id']) }}
{{ $section['title'] }}
Detail data, angka, dan timeline untuk transparansi proyek.
{!! $section['content'] !!}
@elseif($section['type'] == 'cover')
@if($logoBase64) @endif
LET'S START
Hubungi kami untuk memulai transformasi.
admin.thedarkandbright.com
{!! $section['content'] !!}
@endif
@endforeach