@extends('admin.layout') @section('title','Orders') @section('content')

Orders

@foreach($orders as $o)@endforeach
OrderCustomerTotalPaymentStatus
{{ $o->order_number }}{{ $o->customer_email }}₹{{ number_format($o->total,2) }}{{ $o->payment_status }}{{ $o->order_status }}
{{ $orders->links() }}@endsection