function findAllRoom()
 {
     return Room::all();
 }
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $rooms = Room::all();
     return view('room.roomList', ['rooms' => $rooms]);
 }