12345678910111213141516171819202122232425262728 |
- <?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('/clients', 'PostController@get_clients');
- Route::post('/clients', 'PostController@add_client');
- Route::get('/workers', 'PostController@get_workers');
- Route::get('/halls', 'PostController@get_halls');
- Route::get('/delete_order/{id}', 'PostController@delete');
- Route::get('/', 'PostController@get_orders');
- Route::get('/addclnt', function () {
- return view('addclient');
- });
|