web.php 845 B

1234567891011121314151617181920212223242526272829303132333435
  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('/', function () {
  13. return view('welcome');
  14. });
  15. //bootstrap版本的表单
  16. Route::get('/test', function () {
  17. return view('web.index');
  18. });
  19. //展示表单(layui版本的表单)
  20. Route::get('/show', function () {
  21. return view('web.show');
  22. })->name('show');
  23. //提交表单
  24. Route::post('/add', 'Form\IndexController@index')->name('add');
  25. //上传图片
  26. Route::post('/imguploads','Form\IndexController@upload')->name('upload');