@extends('layouts.app') @section('content')

Orders

@forelse($data as $val) @empty @endforelse
S.NO Order ID Product Name No of Quantity Order Status Ordered Date Status Action
{{ $key+1 }} #{{ $val['order_id'] }} {{ $val['product_name'] }} {{ $val['prod_qty'] }} {{ $val['order_status'] }} {{ date('d-M-Y h:i ', strtotime($val['created_at'] )) }} Inactive
No Record Found
@endsection