@extends('layouts.master') @inject('dateranges', 'App\Services\DateRangePickerService') @section('page-title') Ratios for '{{ $account->name }}' @endsection @section('content')

Filter

$account->id]) }}" method="GET">
@foreach($goods->sortBy('goodName') as $good) @endforeach
Name Units in Units out Total units Value in Inventory turnover Days inventory outstanding
$good->goodId]) }}" title="Goto price development"> {{ $good->goodName }} @quantity($good->totalQuantityIn) {{ $good->unitName }} @quantity($good->totalQuantityOut) {{ $good->unitName }} @quantity($good->currentQuantity()) {{ $good->unitName }} @currency($good->totalValueIn) {{ $currency->symbol }} @if($good->inventoryTurnOverRate() > 0) @quantity( $good->inventoryTurnOverRate() ) @else - @endif @if($good->daysInventoryOutstanding($periodInDays) > 0) @quantity( $good->daysInventoryOutstanding($periodInDays) ) @else - @endif
@endsection @section('js') @endsection