web.php 756 B

1234567891011121314151617181920212223242526
  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Web Routes
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here is where you can register web routes for your application. These
  9. | routes are loaded by the RouteServiceProvider and all of them will
  10. | be assigned to the "web" middleware group. Make something great!
  11. |
  12. */
  13. // Главная страница
  14. Route::view('/', 'index');
  15. use App\Http\Controllers;
  16. // Форма
  17. Route::get('/form', [Controllers\form_controller::class, 'index']);
  18. Route::post('/form', [Controllers\form_controller::class, 'store']);
  19. // Данные
  20. Route::get('/data', [Controllers\data_controller::class, 'index']);