@extends('layouts.master') @section('page-title') {{ $category->name }} @endsection @section('breadcrumb') @endsection @section('content') @foreach($category->groups as $group)

{{ $group->name }}

@foreach($group->items as $good) @endforeach
Name Units at start Units in Units out Units at end Average unit price Total
$good->goodId]) }}"> {{ $good->goodName }} @quantity($good->quantityStart) {{ $good->unitName }} @quantity($good->quantityIn) {{ $good->unitName }} @quantity($good->quantityOut) {{ $good->unitName }} @quantity($good->quantityEnd()) {{ $good->unitName }} @currency($good->averageUnitPrice) {{ $currency->symbol }} @currency($good->valueEnd()) {{ $currency->symbol }}
Total value: @currency($group->totalValueEnd()) {{ $currency->symbol }}
@endforeach @endsection