name('operationController.store'); Route::post('/wyjazdy/edit/', 'operationsController@update')->name('operationController.update'); Route::get('/wyjazdy/edit/{id}', 'operationsController@editForm'); Route::get('/register', 'RegistrationController@create'); Route::post('/register', 'RegistrationController@store'); Route::get('/login', 'SessionsController@create'); Route::post('/login', 'SessionsController@store'); Route::get('/logout', 'SessionsController@destroy'); Route::get('/strazacy', 'fireFightersController@create'); Route::get('/strazacy/add', 'fireFightersController@addForm'); Route::post('/strazacy', 'fireFightersController@store'); Route::get('/strazacy/edit/{id}', 'fireFightersController@editForm'); Route::post('/strazacy/edit', 'fireFightersController@update'); Route::get('/jednostka', 'fireStationController@create'); Route::post('/jednostka', 'fireStationController@store'); Route::get('/jednostka/edit', 'fireStationController@editForm'); Route::post('/jednostka/edit', 'fireStationController@update'); Route::get('/jednostka/getcounties/{id}','DataController@getCounties'); Route::get('/jednostka/getcommunities/{id}','DataController@getCommunities'); 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'); 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'); Route::get('/szkolenia', 'trainingsController@create'); Route::post('/szkolenia', 'trainingsController@store'); Route::get('/szkolenia/addTrainingsFireFighters/{id}', 'trainingsController@addTrainingsFireFighters'); Route::post('/szkolenia/addTrainingsFireFighters/', 'trainingsController@ajaxRequest'); 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('register/verify/{confirmationCode}', [ 'as' => 'confirmation_path', 'uses' => 'RegistrationController@confirm' ]); //Auth::routes(); // //Route::get('/home', 'HomeController@index')->name('home');