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

Orders Listing

@foreach($get_orders as $order) @endforeach
Customer Shipping Address Customer Phone Customer Email Total Items Total Amount Order Date Action
{{ ($order->first_name ?? '') . ' ' . ($order->last_name ?? '') }} {{ $order->address ?? '-'}} {{ $order->phone_number ?? '-' }} {{ $order->email ?? '-'}} {{ $order->total_items ?? '-'}} ${{ $order->total_price ?? '-'}} {{ $order->created_at->format('d-m-Y') ?? '-'}} View Details
@endsection