librilladora/routes/web.php

23 lines
647 B
PHP
Raw Normal View History

2021-11-25 16:19:13 -03:00
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\EventoController;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return view('welcome');
});
2021-11-27 11:15:23 -03:00
Route::post('/processed', [\App\Http\Controllers\LibrilladoraController::class, 'process'])->name('process');