@extends('layouts.backend') @section('extraCss') @endsection @php $reqpos = request("warehouse_id"); @endphp @section('mainContentArea')

Stock Barcode wise Report

@csrf

Filter

{{-- --}} {{-- --}}
WarehouseGroup Store Article Color Start Date End Date ACTION
@php if(count($warehouseProducts) > 0) { @endphp @php $totalcountallsize = 0 ; @endphp @foreach($warehouseProducts as $key => $row) @php $article = \App\Article::with('category')->with('maincategory')->select('image')->where('code',$row->article)->first(); @endphp @php $date1=date_create(date('Y-m-d h:i:s')); $date2=date_create($row->created_at); $diff=date_diff($date1,$date2); @endphp @endforeach @php } @endphp
# Article Color Size MRP Qty AGE
{{$key + $warehouseProducts->firstItem()}} {{ $row->article }} {{ $row->color }} {{ $row->size }} {{ $row->mrp }} {{ $row->qty }} {{ $diff->format("%R%a days") }}
@php if(count($warehouseProducts) > 0) { @endphp {!! $warehouseProducts->appends(request()->input())->links() !!} @php } @endphp
@endsection @section('extraJs') @endsection