@extends ('layouts.app') @section ('content')
@include('partials.messages')
Product
POS link
Actual Amount
Theoretical Amount
@foreach($products as $product)
  • {{ $product->info->title }} {{ $product->info->mass_volume }} {{ isset($product->info->mass_volume_type->title) ? $product->info->mass_volume_type->title : '' }}
    {{ $product->pos_link }}
    {{ $product->current_stock_amount }}
    {{ $product->theoretical_amount }}
    @if($product->current_stock_amount != $product->theoretical_amount) {{ $product->variance }} @else {{ $product->current_stock_amount-$product->theoretical_amount }} @endif
  • @endforeach
    {{ $products->links() }}
    Showing {{ ($items > $products->total()) ? $products->total() : $items }} out of {{ $products->total() }} entries
    @include('modals._deactivate') @stop