@extends('layouts.print') @section('content')


{!! __('Date') !!} : {{ date("Y-m-d") }}


{!! siteName() !!}

{{ __('Reports') }} {{ __('Products') }}


@foreach ($products as $index => $item) @endforeach
{!! __('Item code') !!} {{__('an item')}} {{__('Category')}} {{__('Quantity')}}
{{ $loop->index + 1 }} {{ $item->pid }} {{ $item->title }} {{ @Optional($item->category)->title }} {{ $item->stock }}

{!! __('Printed on') !!} : {{ date("d-m-Y") }}


@endsection @section('script') @endsection