예제 #1
0
 /**
  * Show the form for creating a new resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function create()
 {
     $tipos = TipoBus::lists('nombre', 'id');
     $servicios = Servicio::lists('nombre', 'id');
     return view('precios.create', array('tipos' => $tipos, 'servicios' => $servicios));
 }