@extends('dompdf.LayoutBoostrapOnly') @section('content')

Inventory Report

Month : @if ($month == null) All @else {{$month}} @endif

Year : @if ($year == null) All @else {{$year}} @endif

@foreach ($datalist as $key => $value) @endforeach
SKU Product Name First In Out Last
{{$value->sku}} {{$value->product_name}} {{$value->first_stock}} {{$value->in_stock}} {{$value->out_stock}} {{$value->last_stock}}
@endsection