eOSP2/routes/web.php

111 lines
4.3 KiB
PHP
Raw Normal View History

2019-07-11 23:55:51 +02:00
<?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('/', function () {
return view('depot');
});
Route::get('/dokumentacja', function(){
return view('documents');
});
Route::get('/straznica', function(){
return view('depot');
});
Route::get('/pojazdy', function(){
return view('vehicles');
});
2019-11-23 15:01:59 +01:00
Route::get('/wyjazdy', 'operationsController@create');
Route::get('/wyjazdy/add/', 'operationsController@addForm');
Route::post('/wyjazdy', 'operationsController@store')->name('operationController.store');
Route::post('/wyjazdy/edit/', 'operationsController@update')->name('operationController.update');
Route::get('/wyjazdy/edit/{id}', 'operationsController@editForm');
2019-07-11 23:55:51 +02:00
Route::get('/register', 'RegistrationController@create');
Route::post('/register', 'RegistrationController@store');
2019-09-11 00:09:22 +02:00
Route::get('/login', 'SessionsController@create');
Route::post('/login', 'SessionsController@store');
Route::get('/logout', 'SessionsController@destroy');
2019-07-11 23:55:51 +02:00
2019-09-25 18:42:48 +02:00
2019-09-25 18:39:01 +02:00
Route::get('/strazacy', 'fireFightersController@create');
Route::get('/strazacy/add', 'fireFightersController@addForm');
Route::post('/strazacy', 'fireFightersController@store');
2019-10-05 22:29:46 +02:00
Route::get('/strazacy/edit/{id}', 'fireFightersController@editForm');
2019-10-06 02:15:16 +02:00
Route::post('/strazacy/edit', 'fireFightersController@update');
2019-09-25 18:39:01 +02:00
2020-01-02 14:20:35 +01:00
Route::get('/strazacy/odznaczenia/{id}', 'DecorationsController@create');
Route::post('/strazacy/odznaczenia/{id}', 'DecorationsController@store');
Route::resource('decorations', 'DecorationsController');
Route::get('/jednostka', 'fireStationController@create');
Route::post('/jednostka', 'fireStationController@store');
2019-12-07 01:56:30 +01:00
Route::get('/jednostka/edit', 'fireStationController@editForm');
Route::post('/jednostka/edit', 'fireStationController@update');
2019-10-01 20:03:20 +02:00
Route::get('/jednostka/getcounties/{id}','DataController@getCounties');
Route::get('/jednostka/getcommunities/{id}','DataController@getCommunities');
2019-11-17 17:08:02 +01:00
Route::get('/pojazdy', 'VehiclesController@create');
Route::get('/pojazdy/add', 'VehiclesController@addForm');
Route::post('/pojazdy', 'VehiclesController@store');
Route::get('/pojazdy/edit/{id}', 'VehiclesController@editForm');
Route::post('/pojazdy/edit', 'VehiclesController@update');
Route::resource('vehicles', 'VehiclesController');
2019-12-28 19:01:42 +01:00
Route::post('pojazdy/activate', 'VehiclesController@activate');
Route::post('pojazdy/deactivate', 'VehiclesController@deactivate');
2019-10-05 22:29:46 +02:00
Route::get('/sprzet', 'EquipmentController@create');
Route::get('/sprzet/add', 'EquipmentController@addForm');
Route::post('/sprzet', 'EquipmentController@store');
Route::get('/sprzet/edit/{id}', 'EquipmentController@editForm');
Route::post('/sprzet/edit', 'EquipmentController@update');
Route::resource('equipment', 'EquipmentController');
2019-10-05 22:29:46 +02:00
2019-12-25 22:37:22 +01:00
2019-12-25 22:35:20 +01:00
Route::get('/szkolenia', 'trainingsController@create');
Route::post('/szkolenia', 'trainingsController@store');
Route::post('/szkolenia/rename', 'trainingsController@trainingsRename');
2019-12-25 22:35:20 +01:00
Route::get('/szkolenia/addTrainingsFireFighters/{id}', 'trainingsController@addTrainingsFireFighters');
Route::post('/szkolenia/addTrainingsFireFighters/', 'trainingsController@ajaxRequest');
Route::post('/szkolenia/addTrainingsFireFighters/delete', 'trainingsController@deleteFireFighterTrainings');
Route::resource('trainings', 'trainingsController');
2019-12-25 22:35:20 +01:00
Route::get('/userprofile', 'userProfileController@create');
Route::get('/userprofile/edit', 'userProfileController@editForm');
Route::post('/userprofile/edit', 'userProfileController@update');
Route::get('/userprofile/passwordchange', 'ChangePasswordController@create');
Route::post('/userprofile/passwordchange', 'ChangePasswordController@update');
Route::get('/userprofile/szkolenia', 'userProfileController@userTrainings');
Route::get('/userprofile/odznaczenia', 'userProfileController@userDecorations');
2019-12-25 22:37:22 +01:00
2019-10-02 19:01:29 +02:00
Route::get('register/verify/{confirmationCode}', [
'as' => 'confirmation_path',
'uses' => 'RegistrationController@confirm'
]);
2019-07-11 23:55:51 +02:00
//Auth::routes();
//
//Route::get('/home', 'HomeController@index')->name('home');
2020-01-05 00:24:24 +01:00
Route::get('/pdf', 'pdfController@createView');