aboutsummaryrefslogtreecommitdiffhomepage
path: root/routes
diff options
context:
space:
mode:
Diffstat (limited to 'routes')
-rw-r--r--routes/api.php18
-rw-r--r--routes/channels.php16
-rw-r--r--routes/console.php18
-rw-r--r--routes/web.php16
4 files changed, 0 insertions, 68 deletions
diff --git a/routes/api.php b/routes/api.php
deleted file mode 100644
index c641ca5..0000000
--- a/routes/api.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?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
deleted file mode 100644
index f16a20b..0000000
--- a/routes/channels.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?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
deleted file mode 100644
index 75dd0cd..0000000
--- a/routes/console.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?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
deleted file mode 100644
index 5eb1b7d..0000000
--- a/routes/web.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?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 "BEAM-Messenger backend";
-});