@extends('layouts.base') @section('title', 'Pembayaran') @section('content')

Pembayaran

{{--

MyTukang.

Butiran Tempahan
Nama {{ $booking->user->name }}
Perkhidmatan {{ $booking->service->name }}
Sub-Perkhidmatan {{ $booking->subService->name }}
Alamat {{ $booking->address->address_line1 }},
{{ $booking->address->address_line2 }},
{{ $booking->address->postcode }} {{ $booking->city }}
Unit {{ $booking->unit }}
Jumlah Bayaran RM {{ number_format($booking->total_payment, 2) }}
Butiran Sebut Harga
@if (!empty($quotationItems)) @foreach ($quotationItems as $index => $item) @endforeach @else @endif
# Skop Kerja Kuantiti Harga Seunit (RM) Jumlah (RM)
{{ $index + 1 }} {{ $item->scope_of_work }} {{ $item->quantity }} {{ number_format($item->unit_price, 2) }} {{ number_format($item->total_price, 2) }}
Tiada maklumat sebut harga tersedia.
Jumlah Keseluruhan: RM {{ number_format($booking->total_payment, 2) }}
Recap Pesanan
Jumlah Kontrak RM {{ number_format($booking->total_payment, 2) }}
Diskaun - RM 0.00
Jumlah Akhir RM {{ number_format($booking->total_payment, 2) }}
--}}

MyTukang.

RM {{$quotation->booking->total_payment}}

{{$quotation->booking->subService->name}}


No. Tempahan: #{{$quotation->booking->id}}

Servis: {{$quotation->booking->service->name}}

Ini adalah jumlah bayaran yang perlu dibuat bagi memulakan proses kerja pembaikan agar dapat dijalankan. Sila pastikan untuk menyelesaikan bayaran ini bagi mengelakkan sebarang kelewatan dalam proses pembaikan rumah anda.

Senarai Harga

@if (!empty($items)) @foreach ($items as $index => $item)
{{ $item['scope_of_work'] }}
{{ $item['quantity'] }} qty
Harga seunit
RM {{ number_format($item['unit_price'], 2) }}
Jumlah
RM {{ number_format($item['total_price'], 2) }}
@endforeach @else

Tiada item sebut harga tersedia.

@endif
Total Keseluruhan
RM {{ number_format($quotation->booking->total_payment, 2) }}
@endsection