/** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { $regions = Region::all(); $countries = Country::orderBy('name', 'asc')->get(); $offers_air = Offer_air::orderBy('offerId', 'asc')->get(); return view('cms/tags/create')->with('regions', $regions)->with('countries', $countries)->with('offers_air', $offers_air); }
/** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { return view('cms/regions/all')->with('regions', Region::all()); }