Esempio n. 1
0
 /**
  * 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);
 }