家政小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

web.php 870B

123456789101112131415161718192021222324252627
  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. Route::post('/common/upload', 'CommonController@upload');
  16. Route::post('/campaign/store', 'CampaignController@store');
  17. Route::delete('/campaign/delete', 'CampaignController@delete');
  18. Route::get('/campaign/list', 'CampaignController@list');
  19. Route::post('/product/store', 'ProductController@store');
  20. Route::delete('/product/delete', 'ProductController@delete');
  21. Route::get('/product/list', 'ProductController@list');