@extends('frontend.layouts.user_panel') @section('panel_content')
# | {{ translate('Name')}} | {{ translate('Category')}} | {{ translate('Current Qty')}} | {{ translate('Base Price')}} | {{ translate('Published')}} | {{ translate('Featured')}} | {{ translate('Options')}} |
---|---|---|---|---|---|---|---|
{{ ($key+1) + ($products->currentPage() - 1)*$products->perPage() }} | {{ $product->getTranslation('name') }} | @if ($product->category != null) {{ $product->category->getTranslation('name') }} @endif | @php $qty = 0; foreach ($product->stocks as $key => $stock) { $qty += $stock->qty; } echo $qty; @endphp | {{ $product->unit_price }} |