@extends('layouts.app') @section('title', 'Orders') @section('page-title', 'Orders') @section('breadcrumb', 'Sales & Orders') @section('content')
Create Order
@if($orders->count())
@foreach($orders as $order) @endforeach
Order # Customer Items Total Status Date Actions
{{ $order->order_number }} {{ $order->user?->name }} {{ $order->items->count() }} ₹{{ number_format($order->total, 0) }} {{ ucfirst($order->payment_status) }} {{ $order->created_at->format('M d, Y') }} Invoice View
{{ $orders->links() }}
@else @endif
@endsection