intento de muestra de gasolina
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 regels
744 B

  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. use App\Http\Controllers\ReadXmlController;
  4. use App\Http\Controllers\SaveXmlController;
  5. /*
  6. |--------------------------------------------------------------------------
  7. | Web Routes
  8. |--------------------------------------------------------------------------
  9. |
  10. | Here is where you can register web routes for your application. These
  11. | routes are loaded by the RouteServiceProvider within a group which
  12. | contains the "web" middleware group. Now create something great!
  13. |
  14. */
  15. Route::get("read-xml", [ReadXmlController::class, "index"]);
  16. Route::match(["get", "post"], "save-xml", [SaveXmlController::class, "index"])->name('xml-upload');
  17. Route::get('/', function () {
  18. return view('welcome');
  19. });