Merged older paper pi with the newer, with some recent updates.

This commit is contained in:
kplaczek
2018-04-02 22:34:15 +02:00
parent 3c0ebd26ed
commit ad53e0c861
19 changed files with 1071 additions and 160 deletions

View File

@@ -12,13 +12,20 @@
*/
Route::get('/', 'Main@listView')->name('list');
Route::post('/', 'Main@listView');
Route::get('/new', 'Main@form')->name('form');
//Route::post('/', 'Main@listView');
Route::get('/edit/{id}/{slug}', 'Main@edit')->name('edit');
Route::post('/print/{id}/', 'Main@printText')->name('print');
Route::post('/edit/{id}/{slug}', 'Main@edit');
Route::post('/printImage', 'Main@imagePrint');
Route::post('/', 'Main@main');
Route::get('/airly', 'Main@airly');
Route::get('/multikino/today', 'Repertoire@today_multikino');
Route::get('/multikino/tomorrow', 'Repertoire@tomorrow_multikino');
@@ -37,6 +44,8 @@ Route::get('/helios/tomorrow', 'Repertoire@tomorrow_helios');
Route::get('/repertoire/today', 'Repertoire@today_repertoire');
Route::get('/repertoire/tomorrow', 'Repertoire@tomorrow_repertoire');
Route::post('/printImage', 'Main@imagePrint');
Route::post('/', 'Main@main');
Route::get('/packtpub/today', 'PacktPub@today');
Route::get('/keyboard/{key}', 'Keyboard@press');
Route::get('/closedshops/tomorrow', 'ClosedShops@tomorrow');