Почему мне выдает ошибку Target class [TestController] does not exist?
Файл TestController.php находится в app\Http\Controllers\TestController.php
web.php
<?php
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| 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 '!!!';
});
Route::get('/products/{title}', function ($title) {
return 'Страница продукта' . $title;
});
Route::get('/show', 'TestController@show');
TestController.php
<?php
namespace App\Http\Controllers;
use App\Http\Controllers\Controller;
class TestController extends Controller
{
public function show()
{
return 'TestController';
}
}
?>