Advertisement
kura2yamato

routes

Aug 6th, 2023 (edited)
947
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | Source Code | 0 0
  1. <?php
  2. Route::get('/myExcel', 'App\Http\Controllers\ExcelController@index');
  3.  
  4. Route::prefix('myExcel')->group(function () {
  5.     Route::get('/ex1', 'App\Http\Controllers\ExcelController@ex1');
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement