forked from s421507/eOSP2
68 lines
1.8 KiB
PHP
68 lines
1.8 KiB
PHP
<?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');
|
|
});
|
|
|
|
Route::get('/wyjazdy', function(){
|
|
return view('operation');
|
|
});
|
|
|
|
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/getcounties/{id}','DataController@getCounties');
|
|
Route::get('/jednostka/getcommunities/{id}','DataController@getCommunities');
|
|
|
|
|
|
Route::get('register/verify/{confirmationCode}', [
|
|
'as' => 'confirmation_path',
|
|
'uses' => 'RegistrationController@confirm'
|
|
]);
|
|
|
|
//Auth::routes();
|
|
//
|
|
//Route::get('/home', 'HomeController@index')->name('home');
|