@php use App\Models\ParameterDetail; @endphp QUOTATION #{{ $quotation->number }} @if(isset(Auth::user()->entity->logo)) @else @endif

{{ Auth::user()->entity->name }}

{{ Auth::user()->entity->address . ' / ' . Common::phoneFormat(Auth::user()->entity->phone) }}
{!! $quotation->qr_code !!}

{{ Auth::user()->entity->name }}

{{ Auth::user()->entity->address . ' / ' . Common::phoneFormat(Auth::user()->entity->phone) }}
{!! $quotation->qr_code !!}
 
QUOTATION
 
Kepada YTH,
{{ $quotation->customer->name }}

{{ $quotation->customer->address }}
No. Quotation {{ $quotation->number }}
Tanggal Berlaku {{ Common::dateFormat($quotation->start_date, 'dd mmmm yyyy') }} s/d {{ Common::dateFormat($quotation->end_date, 'dd mmmm yyyy') }}
@if (Auth::user()->entity->is_barang) @else @endif @php $no = 1; $class = ''; $items = json_decode($quotation->items); @endphp @foreach ($items as $i) @php $work = \App\Models\Item::select('name') ->where('id', $i->id) ->first(); @endphp @php $class = empty($class) ? 'gray' : ''; $no++; @endphp @endforeach
NoItemJasaQty Harga Total
{{ $no }} {{ $work->name }} {{ number_format($i->qty, 0, '', '.') }} {{ 'Rp. ' . number_format($i->price, 0, '', '.') }} {{ 'Rp. ' . number_format($i->total, 0, '', '.') }}
@isset($quotation->descr)

Keterangan:
{{ $quotation->descr }}

@endisset
Sub Total Rp. {{ number_format($quotation->subtotal, 0, '', '.') }}
PPN Rp. {{ number_format($quotation->ppn, 0, '', '.') }}
PPH Rp. {{ number_format($quotation->pph, 0, '', '.') }}
Total Rp. {{ number_format($quotation->total, 0, '', '.') }}
@if (!empty($employees)) Dikerjakan oleh :
    @foreach ($employees as $e)
  1. {{ $e }}
  2. @endforeach
@endif
Dibuat Oleh,




{{ $quotation->creator->name }}