Пример #1
0
 */
Route::get('captcha', ['as' => 'captcha', 'uses' => function () {
    Captcha::make();
    $response = Response::make('', 200);
    $response->header('Content-Type', 'image/jpg');
    return $response;
}]);
/*
 * Installation
 */
Route::get('install', 'InstallController@index');
Route::post('install', 'InstallController@index');
/*
 * Execute Cron Jobs
 */
Route::get('jobs', function () {
    Jobs::run();
    return Response::make('1', 200);
});
/*
 * Testing
 */
Route::get('test', function () {
    /*
    $controller = new InstallController();
    $controller->create('table', function($table)
    {
    
    });
    */
});