@extends('admin.layouts.app') @section('title', 'Damage Order View') @push('styles') @endpush @section('container')
Phone: {{ config('app.phone') }} ,Tel: {{ config('app.tel') }}
Email: {{ config('app.email') }}
Address: {{ config('app.address') }}
| Supplier Name: | {{ $order->supplier->name??'' }} |
|---|---|
| Supplier Email: | {{ $order->supplier->email??'' }} |
| Supplier Phone: | {{ $order->supplier->phone??'' }} |
| Order No : | DO-{{ $order->sale_no }} |
|---|---|
| Order Type : | {{ $order->order_type }} |
| Client Name: | {{ $order->client->name??'' }} |
|---|---|
| Client Email: | {{ $order->client->email??'' }} |
| Client Phone: | {{ $order->client->phone??'' }} |
| SL | Product Name | Weight | Buying Price | Selling Price | Buying SubTotal | Selling SubTotal |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $damageOrderDetail->product->name??'' }} | {{ $damageOrderDetail->weight }} | {{ $damageOrderDetail->weight_purchase_price }} | {{ $damageOrderDetail->weight_sale_price }} | {{ number_format($damageOrderDetail->total_purchase_amount, 2) }}/- tk | {{ number_format($damageOrderDetail->total_sale_amount, 2) }}/- tk |
| Total | {{ number_format($order->grand_total_purchase_amount, 2) }}/- tk | {{ number_format($order->grand_total_sale_amount, 2) }}/- tk | ||||
| Purchase Total | {{number_format($order->grand_total_purchase_amount,2)}}/- tk |
|---|---|
| Sale Total | {{number_format($order->grand_total_sale_amount,2)}}/- tk |