@extends(isset($input['print']) && $input['print']==1 ? 'layouts.general' : 'layouts.app') @section('link') @if(isset($input['print']) && $input['print']==1) @endif @endsection @section('style') @endsection @section('content')
@include('shared.messages')

Проверка за нулеви или отрицателни наличности

@if(isset($stocks)) @foreach($stocks as $stock) @endforeach @endif
ID Продукт Склад Място Палет Количество Партида Годност Заключена Поръчка Проблем Взета Изтрий
{{$stock->id}} {{$stock->product_name}} {{$stock->storage_name}} {{$stock->place}} {{$stock->pallet}} {{$stock->quantity}} {{$stock->batch}} {{$stock->expiring_date!=null ? date('d.m.Y',strtotime($stock->expiring_date)) : ''}} {{$stock->locked==1 ? 'Да' : 'Не'}} {{$stock->order_id}} {{$stock->problem==1 ? 'Да' : 'Не'}} {{$stock->collected==1 ? 'Да' : 'Не'}}
@endsection