/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     //
     return View("administrators.index", ["companies" => Company::all(), 'users' => User::all(), 'title' => 'User Listing']);
 }