Error in Laravel Routes 5

2

I am new to Laravel, I currently have a problem. I have a project that happened to me, which was done in version 5.2 of Laravel, I currently have 5.7. Execute the commands:

php artisan cache:clear
php artisan config:clear

Verify that you already connect to my BD in Phpmyadmin. My problem is when the user enters the project, I get an error in the routes. I access my project via localhost:

http://localhost:55/ts_proyect/public

For what I investigated there were changes in the previous version to 5.3 in the Routes file that was in App \ Http \ routes.php

Here are the routes:

<?php

/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the controller to call when that URI is requested.
|
*/

Route::resource('/', 'LoginController');
Route::get('/salir', 'LoginController@salir');
Route::resource('home', 'HomeController');
Route::resource('mantenedor/docente', 'DocenteController');
Route::resource('mantenedor/tesista', 'TesistaController');
Route::resource('proceso/asignacionjurado', 'AsignacionController');
Route::resource('proceso/entregaborrador', 'EntregaBorradorController');
Route::resource('tesisdetjurado', 'TesisdetJuradoController');
Route::resource('tesisdettesista', 'TesisdetTesistaController');
Route::resource('proceso/observacion', 'ObservacionController');


Route::resource('reportes/rasignadojurados', 'ReporteasignadojuradosController');


Route::get('reporteexcel/rreporteAsignacionJurado', 'ExcelController@reporteAsignacionJurado');

I've been trying to solve this for over 5 hours, I was thinking about passing it to the version, but anyway I want to try to solve this problem. Try creating a virtual host and it did not work.

    
asked by Luis Fernando Zumaran 10.09.2018 в 03:34
source

0 answers