/**
  * @param $view
  *
  * @return mixed
  */
 public function compose(View $view)
 {
     return $view->with('users', $this->user->all()->count())->with('assets', $this->asset->all()->count())->with('inventories', $this->inventory->all()->count())->with('workOrders', $this->workOrder->all()->count());
 }