No haya la ruta
Publicado por zendi (10 intervenciones) el 07/01/2019 20:39:55
Tengo estos codigos para probar los controladores para llamar una vista pero me da este error
esta es la vista:
no se cual es el error.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
C:\xampp\htdocs\laravel\app\Http\Controllers\TestController.php
<?php
class TestController extends Controllers
{
public function getIndex()
{
return View::make('index');
}
}
?>
Arguments
"Class 'Controllers' not found"
esta es la vista:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet" type="text/css">
<!-- Styles -->
</head>
<body>
<div class="flex-center position-ref full-height">
@if (Route::has('login'))
<div class="top-right links">
@auth
<a href="{{ url('/home') }}">Home</a>
@else
<a href="{{ route('login') }}">Login</a>
@if (Route::has('register'))
<a href="{{ route('register') }}">Register</a>
@endif
@endauth
</div>
@endif
<div class="content">
<div class="title m-b-md">
Hola desde la vista index
</div>
<div class="links">
<a href="https://laravel.com/docs">Documentation</a>
<a href="https://laracasts.com">Laracasts</a>
<a href="https://laravel-news.com">News</a>
<a href="https://nova.laravel.com">Nova</a>
<a href="https://forge.laravel.com">Forge</a>
<a href="https://github.com/laravel/laravel">GitHub</a>
</div>
</div>
</div>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Route::get('/', function () {
return view('welcome');
});
Route::get('/hola', function () {
return "Hola te Saludo";
});
Route::get('user/{id}', function ($id) {
return "User " .$id;
});
Route::get("/test","TestController");
Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');
no se cual es el error.
Valora esta pregunta
0