Hey I just start to learn Laravel. I have created Controller successfully with php artisan make:controller Youtube command. But the thing is when i try to access it from Route which look like this "Route::get("/Youtube","Youtube@index");" While there is simple echo statement in controller. Controller look like this
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class Youtube extends Controller
{
function index(){
echo "create";
}
}