اجمالي الطلبات : {{ number_format($orders->total()) }}
{{--
اجمالي نسبة المورد : {{ number_format($total * 0.9 ) }}
اجمالي نسبة ذبيحتي : {{ number_format($total * 0.1) }}
--}}
ID |
المورد |
القسم |
الاجمالي |
نسبة المورد |
نسبة ذبيحتي |
التوصيل في حال اكتر من مورد |
تاريخ الانشاء |
تاريخ الطلب |
@php
$sumTotal = 0;
$sumZabehatyTotal = 0;
$sumSupplierTotal = 0;
$sumDeliveryTotal = 0;
@endphp
@foreach ($orders as $order)
@php
$suppliers = $order->suppliers()->unique() ;
if($suppliers->count()>1)
$sumDeliveryTotal += $order->delivery;
@endphp
@foreach($suppliers as $supplier)
@continue(request()->filled('supplier_id') && request('supplier_id') != $supplier->id)
@php
$total = ($suppliers->count()>1) ? $order->totalForSupplier($supplier) : $order->total;
$sumTotal += $total ;
$sumSupplierTotal += $total * 0.9 ;
$sumZabehatyTotal += $total * 0.1 ;
@endphp
count()>1) style='background:orange' @endif >
{{ $order->id }}
|
{{ $supplier->name }} |
{{ $order->category?->name }} |
{{ $total }} |
{{ $total * 0.9 }} |
{{ $total * 0.1 }} |
{{ ($suppliers->count()>1)?$order->delivery:'' }} |
{{ $order->created_at }} |
{{ $order->date }} |
@endforeach
@endforeach
|
|
|
{{number_format($sumTotal)}} |
{{number_format($sumSupplierTotal)}} |
{{number_format($sumZabehatyTotal)}} |
{{number_format($sumDeliveryTotal)}} |
|
|
{{ $orders->appends(request()->except('page'))->links() }}