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