اجمالي الطلبات : {{ number_format($orders->total()) }}
@isset($total)
اجمالي الخصومات : {{ number_format($total['discount']) }}
اجمالي النقاط : {{ number_format($total['points']) }}
@endisset
ID |
الاجمالي |
النقاط المستخدمة |
قيمة النقاط |
تاريخ الانشاء |
تاريخ الطلب |
@foreach ($orders as $order)
@php
$pointsDiscount = $order->discounts->where('type' , 'points')->first() ;
@endphp
{{ $order->id }}
|
{{ $order->total }} |
{{ $pointsDiscount->data['points'] }} |
{{ $pointsDiscount->amount }} |
{{ $order->created_at }} |
{{ $order->date }} |
@endforeach