/**
  * @param $view
  *
  * @return mixed
  */
 public function compose(View $view)
 {
     $allInventories = $this->inventory->get()->lists('name', 'id');
     return $view->with('allInventories', $allInventories);
 }