@extends('backends.layouts.master_layout') @section('title',"Orders") @section('page_heading','Orders') @section('content')
@foreach($orderItems as $k => $item) @endforeach
SL Product ID Title img weight sales_price quantity total_product_price
{{ ($orderItems->currentPage() - 1) * $orderItems->perPage() + $loop->iteration }} {{$item->product_id}} {{$item->title}} {{$item->title}} {{ $item->weight }} {{ $item->sales_price }} {{ $item->quantity }} {{ $item->total_product_price }}
{{$orderItems->links()}} Back
@endsection