@extends('layouts.tenant') @section('title', 'Fatura #' . $invoice->invoice_number) @section('content')
{{ $invoice->client->name }}
#{{ $invoice->invoice_number }}
{{ $invoice->client->name }}
@if($invoice->client->email){{ $invoice->client->email }}
@endif @if($invoice->client->phone){{ $invoice->client->phone }}
@endif @if($invoice->client->address){{ $invoice->client->address }}
@endif| Descrição | Qtd | Preço Unit. | Total |
|---|---|---|---|
| {{ $item['description'] }} | {{ number_format($item['quantity'], 2, ',', '.') }} | {{ $invoice->currency }} {{ number_format($item['unit_price'], 2, ',', '.') }} | {{ $invoice->currency }} {{ number_format($item['quantity'] * $item['unit_price'], 2, ',', '.') }} |
{{ $invoice->notes }}
{{ $invoice->terms }}