web.php 633 B

1234567891011121314151617181920
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Web Routes
  5. |--------------------------------------------------------------------------
  6. |
  7. | Here is where you can register web routes for your application. These
  8. | routes are loaded by the RouteServiceProvider within a group which
  9. | contains the "web" middleware group. Now create something great!
  10. |
  11. */
  12. Route::get('/certificate', 'UserController@test');
  13. Route::get('/diploma', 'CertificationsController@downloadDiploma');
  14. Route::get('/certificate', 'CertificationsController@downloadCertificate');
  15. Route::get('/down', 'UserController@down');