diff options
Diffstat (limited to 'routes')
| -rw-r--r-- | routes/api.php | 18 | ||||
| -rw-r--r-- | routes/channels.php | 16 | ||||
| -rw-r--r-- | routes/console.php | 18 | ||||
| -rw-r--r-- | routes/web.php | 33 |
4 files changed, 85 insertions, 0 deletions
diff --git a/routes/api.php b/routes/api.php new file mode 100644 index 0000000..c641ca5 --- /dev/null +++ b/routes/api.php @@ -0,0 +1,18 @@ +<?php + +use Illuminate\Http\Request; + +/* +|-------------------------------------------------------------------------- +| API Routes +|-------------------------------------------------------------------------- +| +| Here is where you can register API routes for your application. These +| routes are loaded by the RouteServiceProvider within a group which +| is assigned the "api" middleware group. Enjoy building your API! +| +*/ + +Route::middleware('auth:api')->get('/user', function (Request $request) { + return $request->user(); +}); diff --git a/routes/channels.php b/routes/channels.php new file mode 100644 index 0000000..f16a20b --- /dev/null +++ b/routes/channels.php @@ -0,0 +1,16 @@ +<?php + +/* +|-------------------------------------------------------------------------- +| Broadcast Channels +|-------------------------------------------------------------------------- +| +| Here you may register all of the event broadcasting channels that your +| application supports. The given channel authorization callbacks are +| used to check if an authenticated user can listen to the channel. +| +*/ + +Broadcast::channel('App.User.{id}', function ($user, $id) { + return (int) $user->id === (int) $id; +}); diff --git a/routes/console.php b/routes/console.php new file mode 100644 index 0000000..75dd0cd --- /dev/null +++ b/routes/console.php @@ -0,0 +1,18 @@ +<?php + +use Illuminate\Foundation\Inspiring; + +/* +|-------------------------------------------------------------------------- +| Console Routes +|-------------------------------------------------------------------------- +| +| This file is where you may define all of your Closure based console +| commands. Each Closure is bound to a command instance allowing a +| simple approach to interacting with each command's IO methods. +| +*/ + +Artisan::command('inspire', function () { + $this->comment(Inspiring::quote()); +})->describe('Display an inspiring quote'); diff --git a/routes/web.php b/routes/web.php new file mode 100644 index 0000000..8011a5d --- /dev/null +++ b/routes/web.php @@ -0,0 +1,33 @@ +<?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('/angebote/', 'IndexController@showPage')->name('whisky'); + +Route::get('/angebote/whisky', 'OfferController@showPage')->name('whisky'); +Route::get('/angebote/wodka', 'OfferController@showPage')->name('wodka'); +Route::get('/angebote/gin', 'OfferController@showPage')->name('gin'); +Route::get('/angebote/rum', 'OfferController@showPage')->name('rum'); +Route::get('/angebote/misc', 'OfferController@showPage')->name('misc'); +Route::get('/angebote/all', 'OfferController@showPage')->name('all'); + +Route::get('/angebote/search', 'SearchController@showPage')->name('searchp'); + +Route::get('/angebote/whisky/feed', 'RSSController@showPage')->name('whisky_feed'); +Route::get('/angebote/wodka/feed', 'RSSController@showPage')->name('wodka_feed'); +Route::get('/angebote/gin/feed', 'RSSController@showPage')->name('gin_feed'); +Route::get('/angebote/rum/feed', 'RSSController@showPage')->name('rum_feed'); +Route::get('/angebote/misc/feed', 'RSSController@showPage')->name('misc_feed'); +Route::get('/angebote/all/feed', 'RSSController@showPage')->name('all_feed'); +Route::get('/angebote/search/feed', 'RSSController@showPage')->name('search_feed'); + +Route::get('/angebote/_/api/lookup', 'LookupController@showPage')->name('lookup'); |
