@extends('layouts.app')
@section('title', 'فاتورة ' . $invoice->invoice_number)
@section('content')
| # | الوصف | الكمية | السعر | الخصم | الإجمالي |
|---|---|---|---|---|---|
| {{ $i+1 }} | {{ $item->description }} | {{ $item->quantity }} | {{ number_format($item->unit_price, 2) }} | {{ number_format($item->discount, 2) }} | {{ number_format($item->total, 2) }} |
{{ $invoice->notes }}
@endifلا توجد مدفوعات.
@endforelse