@extends('admin.layouts.master') @section('title', 'الطلب '.$order->order_no) @section('page-header')
| الإجمالي: | {{ number_format($order->total_amount, 2) }} |
| المدفوع: | {{ number_format($order->paid_amount, 2) }} |
| المتبقي: | {{ number_format($order->remaining_amount, 2) }} |
| الوصف | النوع | المقاس | وش/ضهر | الكمية | منتج | سعر | إجمالي |
|---|---|---|---|---|---|---|---|
| {{ $line->description }} | {{ ['offset'=>'أوفست','digital'=>'ديجيتال','flex'=>'فلكس','packaging'=>'تغليف'][$line->printing_type] ?? '' }} | {{ $line->final_size ?? '-' }} | {{ ($line->colors_front ?? '-').'/'.($line->colors_back ?? '0') }} | {{ number_format($line->quantity) }} | {{ number_format($line->produced_quantity) }} | {{ number_format($line->unit_price, 2) }} | {{ number_format($line->total_price, 2) }} |
{{ $order->notes }}
@endif| الإجمالي: | {{ number_format($order->subtotal, 2) }} |
| الخصم: | {{ number_format($order->discount_amount, 2) }} |
| الضريبة ({{ $order->tax_percent }}%): | {{ number_format($order->tax_amount, 2) }} |
| الإجمالي النهائي: | {{ number_format($order->total_amount, 2) }} ج.م |
| الرقم | الباركود | تاريخ الإصدار | الحالة | المراحل |
|---|---|---|---|---|
| {{ $jt->ticket_no }} | {{ $jt->barcode }} |
{{ $jt->issue_date?->format('Y-m-d') }} | {{ $jt->status_label }} |
@php
$total = $jt->stages->count();
$done = $jt->stages->where('status','completed')->count();
@endphp
|
| الرقم | التاريخ | الإجمالي | المدفوع | المتبقي | الحالة |
|---|---|---|---|---|---|
| {{ $inv->invoice_no }} | {{ $inv->invoice_date?->format('Y-m-d') }} | {{ number_format($inv->total_amount, 2) }} | {{ number_format($inv->paid_amount, 2) }} | {{ number_format($inv->remaining_amount, 2) }} | {{ $inv->status_label }} |