@extends('layouts.tabler') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ __('Due Order Details') }}

{{---
---}}
@foreach ($order->details as $item) @endforeach
No. Photo Product Name Product Code Quantity Price Total
{{ $loop->iteration }}
{{ $item->product->name }} {{ $item->product->code }} {{ $item->quantity }} {{ number_format($item->unitcost, 2) }} {{ number_format($item->total, 2) }}
Payed amount {{ number_format($order->pay, 2) }}
Due {{ number_format($order->due, 2) }}
VAT {{ number_format($order->vat, 2) }}
Total {{ number_format($order->total, 2) }}
@include('partials._modal_due', $order) @endsection