/**
  * Find the Company or App Abort 404.
  */
 public function findCompany(Route $route)
 {
     $this->company = Company::findOrFail($route->getParameter('companies'));
 }
 /**
  * Bind data to the view.
  *
  * @param View $view
  */
 public function compose(View $view)
 {
     $companies = Company::allTypePaginate();
     $view->with(['companies' => $companies]);
 }