{{-- Shared body for the Visit Plan notification emails (ToHeadDivision / ToUser / ToPM).
Reproduces the legacy inline-styled tables (purple #570086 banners) with {{ }} auto-
escaping instead of the legacy raw concat. $h = header, $details = Action lines,
$history = assignment log, $showDetails = include Action/Discussion/History. --}}
Visit Plan - Colorindo Chemtra
| Visit Plan No. |
: {{ str_pad((string) $h->id, 6, '0', STR_PAD_LEFT) }} |
Company Name |
: {{ $h->company }} |
| Creator | : {{ $h->creator }} |
Company Address | : {{ $h->companyAddress }} |
| Sales | : {{ $h->sales }} |
Meet | : {{ $h->meet }} |
| Created Date | : {{ $h->createdDate }} |
Visit With | : {{ $h->visitWith }} |
| Report Date |
: @if($h->reportDate && $h->reportDate !== '0000-00-00 00:00:00'){{ $h->reportDate }}@endif |
Purpose | : {{ $h->purpose }} |
| Status | : {{ $h->status }} |
Schedule Date |
: {{ $h->scheduleDate }} {{ $h->scheduleTime1 }} - {{ $h->scheduleTime2 }} |
| Division | : {{ $h->division }} |
Remark | : {{ $h->remark }} |
@if($showDetails)
Action
| Action |
Principal |
Nama Barang |
Remark |
PM Remark |
@forelse($details as $d)
| {{ $d->action }} |
{{ $d->principal }} |
{{ $d->barang }} |
{!! nl2br(e($d->remark)) !!} |
{!! nl2br(e($d->pmRemark)) !!} |
@empty
| Belum ada Action. |
@endforelse
Discussion
| {!! nl2br(e($h->discussion)) !!} |
History
| Tanggal |
Status |
User |
Comment |
@forelse($history as $row)
| {{ $row->date }} |
{{ $row->status }} |
{{ $row->user }} |
{!! nl2br(e($row->comment)) !!} |
@empty
| Belum ada history. |
@endforelse
@endif