@extends('layouts.master') @inject('dateranges', 'App\Services\DateRangePickerService') @section('page-title') Stock overview @endsection @section('breadcrumb')
  1. Beginning: @currency($viewModel->beginningValue()) {{ $currency->symbol }}
  2. In: @currency($viewModel->inValue()) {{ $currency->symbol }}
  3. Out: @currency($viewModel->outValue()) {{ $currency->symbol }}
  4. Ending: @currency($viewModel->endingValue()) {{ $currency->symbol }}
@endsection @section('content')
{{ Form::select('good', $goods, Request::input('good'), ['class' => 'form-control improved-select', 'placeholder' => 'Please choose ...', 'style' => 'height: 34px; width: 250px;']) }}
Print
@endsection @section('js') @endsection