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

All Orders

@foreach ($orders as $order) @endforeach @if ($orders->count() == 0) @endif
Sr.No Product Title Quantity Total Price Payment Status Action
{{$loop->iteration}} {{$order->title}} {{$order->quantity}} ${{$order->price*$order->quantity}} {{$order->order_status}}
@csrf

No Orders

{!! $orders->withQueryString()->links('pagination::bootstrap-5') !!}
@endsection