@extends('layouts.dashboard.superadminapp') @section('title', 'Sales Order List') @section('styles') @endsection @section('content')

UEPL | Sales Order List

day, 00 month 0000
@foreach ($orders as $order) @endforeach
Sales Order No. Date Company Name Grand Total Status Actions
{{ $order->sales_order_no }} {{ \Carbon\Carbon::parse($order->sales_order_date)->format('d M Y') }} {{ $order->customer ? $order->customer->company : '-' }} ₹{{ number_format($order->grand_total, 2) }} {{ ucfirst($order->status ?? '-') }} @if ($order->status === 'pending') @endif
@endsection @section('scripts') @endsection