@extends('layouts.app') @section('title', ($quote->status === 'paid' ? 'Invoice ' : 'Quote ') . $quote->quote_number . ' - Lektrik') @section('content')
Created {{ $quote->created_at->format('d M Y') }}
{{ $quote->quote_number }}
{{ $quote->client->name }}
@if($quote->client->email){{ $quote->client->email }}
@endif @if($quote->client->phone){{ $quote->client->phone }}
@endif @if($quote->client->address){{ $quote->client->address }}
@endif| Description | Qty | Unit Price | Total |
|---|---|---|---|
| {{ $item->description }} | {{ $item->quantity }} | R{{ number_format($item->unit_price, 2) }} | R{{ number_format($item->total_price, 2) }} |
{{ $quote->notes }}