@extends('layouts.app')
@section('styles')
@endsection
@section('content')
@if (mwz_roles('admin.dashboard.dashboard.index'))
รูป |
ชื่อสินค้า |
ราคา |
รายระเอียด |
@foreach ($orders_latest as $order)
@php
$get_img = getImage($order->item);
@endphp
|
{{ $order->item->product_name_th ?? '' }} |
{{ number_format($order->total_all ?? 0, 2) }} |
รายละเอียด |
@endforeach
รูป |
ชื่อสินค้า |
ราคา |
รายระเอียด
|
@foreach ($order_updated as $order)
@php
$get_img = getImage($order->item);
@endphp
|
{{ $order->item->product_name_th ?? '' }} |
{{ number_format($order->total_all ?? 0, 2) }} |
รายละเอียด |
@endforeach
@else
คุณไม่ได้รับสิทธิ์การใช้งานหน้านี้
@endif
@endsection('content')
@section('scripts')
@endsection