@extends('layouts.admin_default') @section('content')
@include('flash_messages.admin_message')
@php $sr = 1; $total_qty = 0; $total_item = 0; @endphp @foreach($result->order_product as $key => $ovalue) @php $total_qty += $ovalue->qty; $total_item += $ovalue->item_total; $sr++; @endphp @endforeach
Sr. No Product Name Qty MRP SP Item Total
{{ $sr }} {{ $ovalue->product_name }} {{ $ovalue->qty }} {{ $ovalue->mrp }} {{ '₹ '.number_format($ovalue->sp, 2, '.', '') }} {{ '₹ '.number_format($ovalue->item_total, 2, '.', '') }}
Total Quantity {{ $total_qty }}
Total {{ '₹ '.number_format($total_item,2,'.','') }}

@endsection