1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /*
- |--------------------------------------------------------------------------
- | Web Routes
- |--------------------------------------------------------------------------
- |
- | Here is where you can register web routes for your application. These
- | routes are loaded by the RouteServiceProvider within a group which
- | contains the "web" middleware group. Now create something great!
- |
- */
- Route::get('/', function () {
- return view('welcome');
- });
- //bootstrap版本的表单
- Route::get('/test', function () {
- return view('web.index');
- });
- //展示表单(layui版本的表单)
- Route::get('/show', function () {
- return view('web.show');
- })->name('show');
- //提交表单
- Route::post('/add', 'Form\IndexController@index')->name('add');
- //上传图片
- Route::post('/imguploads','Form\IndexController@upload')->name('upload');
|