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

Invois

Yusof Abdullah
64, Lebuh Pendamar Indah 1
Taman Pendamar Indah
42000 Pelabuhan Klang, Selangor
Tel No: (+60) 10-5235987

MyTukang.


Kepada:

{{ $booking->user->name }}
{{ $booking->address->address_line1 }}
{{ $booking->address->address_line2 }}
{{ $booking->address->postcode }} {{ $booking->address->city }}

Tarikh Invoice:

{{ $invoice->created_at->format('d/m/Y') }}

No. Invois:

#{{ $invoice->id }}

@foreach ($items as $index => $item) @endforeach
# Skop kerja Kuantiti Harga seunit Jumlah
{{ $index + 1 }} {{ $item['scope_of_work'] }} {{ $item['quantity'] }} RM {{ number_format($item['unit_price'], 2) }} RM {{ number_format($item['total_price'], 2) }}

Jumlah Keseluruhan

RM {{ number_format($booking->total_payment, 2) }}

@endsection