public function ver($categoria, $nom) { if (view()->exists('equip')) { \App\Equip::all(); return view('equip', ['categoria' => $categoria, 'nom' => $nom]); } return "Viendo categoría {$categoria} y página {$nom}"; }
return 'delete'; }); Route::get('colaboradores/{nombre}', function ($nombre) { return "Mostrando el colaborador {$nombre}"; }); Route::get('agenda/{mes}/{ano}', function ($mes, $ano) { return "Viendo la agenda de {$mes} de {$ano}"; }); Route::get('/jugador/{id}', 'Jugador@nombre'); Route::post('/equip/editar/{id}', 'Equip@editar'); Route::get('equip/{categoria}', function ($categoria) { return "Cadet A + Cadet B"; }); Route::get('/equip/{categoria}/{nom}', 'Equip@ver')->where(array('nom' => '[a-cA-C]+')); Route::get('/equip/', 'Equip@recibirPost'); Route::get('/equipos', function () { dd(\App\Equip::all()); }); /* |-------------------------------------------------------------------------- | Application Routes |-------------------------------------------------------------------------- | | This route group applies the "web" middleware group to every route | it contains. The "web" middleware group is defined in your HTTP | kernel and includes session state, CSRF protection, and more. | */ Route::group(['middleware' => ['web']], function () { // });