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

Stock Barcode wise Report

@csrf

Filter

@if(count($pos_id) > 0) @endif
Warehouse Group Store Category Article Brand Color Barcode ACTION
Export Excel
@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 @endforeach @php } @endphp
# Section Subsection Article Brand Color Size Barcode MRP Qty ArticleCode
{{$key + $warehouseProducts->firstItem()}} {{ !empty($article->maincategory) ? $article->maincategory->name : $row->section }} {{ !empty($article->category) ? $article->category->name : $row->subsection }} {{ $row->article }} {{ $brandarray[$row->brand_id] }} {{ $row->color }} {{ $row->size }} {{ $row->barcode }} {{ $row->mrp }} {{ $row->qty }} {{ $row->articlecode }}
@php if(count($warehouseProducts) > 0) { @endphp {!! $warehouseProducts->appends(request()->input())->links() !!} @php } @endphp
@endsection @section('extraJs') @endsection