web.php 890 B

12345678910111213141516171819202122232425262728293031
  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('/', 'ProjectController@show');
  13. Route::post('/', 'ProjectController@send');
  14. Route::get('/employees', 'EmployeeController@show');
  15. Route::post('/employees', 'EmployeeController@send');
  16. Route::get('/employee_projects', 'WorkController@show');
  17. Route::get('/create_project', function () {
  18. return view('create.project');
  19. });
  20. Route::get('/create_employee', function () {
  21. return view('create.employee');
  22. });
  23. Route::get('/application', function () {
  24. return view('application');
  25. });