@extends('layouts.print') @section('page-title') Stock inventory @endsection @section('content') @foreach($viewModel->categories as $category) @foreach($category->groups as $group)
{{ $group->name }} @foreach($group->items->sortBy('goodName') as $good) @endforeach
Name Total
{{ $good->goodName }} @quantity($good->quantityEnd()) {{ $good->unitName }}
@endforeach @endforeach @endsection