/** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { return Room::all(); }
public function showRoom() { $rooms = Room::all(); return view('admin.viewroom')->with('rooms', $rooms); }
function getIndex() { $data['list_rooms'] = Room::all(); return view('phonghoc.index')->with('data', $data); }