@extends('admin.layouts.app') @section('title', 'Damage Order View') @push('styles') @endpush @section('container')

Damage Order View

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif

{{ env('APP_NAME') }}

Phone: {{ config('app.phone') }} ,Tel: {{ config('app.tel') }}
Email: {{ config('app.email') }}
Address: {{ config('app.address') }}

Supplier Name: {{ $order->supplier->name??'' }}
Customer Email: {{ $order->supplier->email??'' }}
Customer Phone: {{ $order->supplier->phone??'' }}
Order No : DO-{{ $order->sale_no }}
Order Type : {{ $order->order_type }}
@php $t_quantity = 0; @endphp @foreach ($order->damageOrderDetails as $damageOrderDetail) @endforeach
SL Product Name Quantity Weight(kg) Selling Price(kg) SubTotal
{{ $loop->iteration }} {{ $damageOrderDetail->product->name??'' }} {{ $damageOrderDetail->quantity }} {{ $damageOrderDetail->weight }} {{ $damageOrderDetail->weight_sale_price }} {{ number_format($damageOrderDetail->total_sale_amount, 2) }}/- tk
Total {{ number_format($order->grand_total_sale_amount, 2) }}/- tk
Sub Total {{number_format($order->grand_total_sale_amount,2)}}/- tk
Grand Total {{number_format($order->grand_total_sale_amount,2)}}/- tk
@endsection @push('scripts') @endpush