web.php 784 B

123456789101112131415161718192021
  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('/', 'PostsController@get_emp_inf');
  13. Route::get('/products', 'PostsController@get_products');
  14. Route::get('/addStaff', 'PostsController@formemp');
  15. Route::get('/addprod', 'PostsController@addprod');
  16. Route::post('/products', 'PostsController@pro');
  17. Route::post('/', 'PostsController@ind');
  18. Route::get('/sold_pr', 'PostsController@sp');
  19. Route::get('/duties', 'PostsController@duties');