Beispiel #1
0
/*
|--------------------------------------------------------------------------
| Routes File
|--------------------------------------------------------------------------
|
| Here is where you will register all of the routes in 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::get('/', function () {
    return view('welcome');
});
Route::get('/hello', function () {
    $activities = Youtube::getActivitiesByChannelId('UC5aFrNqC7R5N5CNRA9MIi7g');
    $video = $activities[0]->contentDetails->upload->videoId;
    $videoInfo = Youtube::getVideoInfo($video);
    var_dump($videoInfo);
});
Route::get('update', 'YTUpdate\\YTUpdateController@UpDateVideo');
/*
|--------------------------------------------------------------------------
| 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.
|
*/