web.php 785 B

12345678910111213141516171819202122232425262728
  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('/clients', 'PostController@get_clients');
  13. Route::post('/clients', 'PostController@add_client');
  14. Route::get('/workers', 'PostController@get_workers');
  15. Route::get('/halls', 'PostController@get_halls');
  16. Route::get('/delete_order/{id}', 'PostController@delete');
  17. Route::get('/', 'PostController@get_orders');
  18. Route::get('/addclnt', function () {
  19. return view('addclient');
  20. });