Net Revenue(excl. tax)
{{ $analytics['net_revenue'] }}
@extends('layouts.admin') @section('content')
}})
Net Revenue(excl. tax)
}})
Number of Bookings
}})
Number Of Cancellations
}})
Total Revenue Bookings
| Nr. | SKU | Product Name | Size/Variation | Color | Total Quantity | Remaining Quantity | Dimensions | Weight | Volume | Action | Status | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $i++ }} | {{ $product->sku ?? '-' }} | {{ $product->name }} | - | {{ $product->color->name ?? '-' }} | N/A | N/A | {{ $product->length }} x {{ $product->width }} x {{ $product->height }} | {{ $product->weight ?? '—' }} | {{ $product->volume ?? '—' }} | |||
| {{ $i++ }} | {{ $option->sku }} | {{ $product->name }} | {{ $variation->size->name ?? $variation->variation->name ?? '-' }} | {{ $option->color->name ?? '-' }} | {{--{{ $option->quantity }} | --}}
{{ $option->quantity ?? 0 }}
@if(isset($rentedCounts['option'][$option->id]))
Rented: {{ $rentedCounts['option'][$option->id] }}
@endif
|
$option->total_quantity > 0 && $option->total_quantity <= 2,
'out-of-stock' => $option->total_quantity <= 0
])>
{{ $option->total_quantity ?? $option->quantity }}
|
{{ $variation->length }} x {{ $variation->width }} x {{ $variation->height }} | {{ $variation->weight ?? '—' }} | {{ $variation->volume ?? '—' }} | @php $isDisabled = $vendor->disabledVariants->contains($variation->id) || $variation->status != 'in_stock'; @endphp @if($firstRow) @php $firstRow = false; @endphp @endif | |
| {{ $i++ }} | {{ $variation->sku ?? '-' }} | {{ $product->name }} | {{ $variation->size->name ?? $variation->variation->name ?? '-' }} | {{ $variation->color->name ?? '-' }} | {{--{{ $variation->quantity }} | --}}
{{ $variation->quantity ?? 0 }}
@if(isset($rentedCounts['variation'][$variation->id]))
Rented: {{ $rentedCounts['variation'][$variation->id] }}
@endif
|
$variation->total_quantity > 0 && $variation->total_quantity <= 2,
'out-of-stock' => $variation->total_quantity <= 0
])>
{{ $variation->total_quantity ?? $variation->quantity }}
@if(isset($rentedCounts['variation'][$variation->id]))
Available: {{ $variation->quantity - $rentedCounts['variation'][$variation->id] }}
@endif
|
{{ $variation->length }} x {{ $variation->width }} x {{ $variation->height }} | {{ $variation->weight ?? '—' }} | {{ $variation->volume ?? '—' }} | @if($firstRow) @php $firstRow = false; @endphp @endif |