summaryrefslogtreecommitdiff
path: root/Year_3/TSDWL/LARAVEL/iBook/routes
diff options
context:
space:
mode:
Diffstat (limited to 'Year_3/TSDWL/LARAVEL/iBook/routes')
-rw-r--r--Year_3/TSDWL/LARAVEL/iBook/routes/api.php19
-rw-r--r--Year_3/TSDWL/LARAVEL/iBook/routes/channels.php18
-rw-r--r--Year_3/TSDWL/LARAVEL/iBook/routes/console.php19
-rw-r--r--Year_3/TSDWL/LARAVEL/iBook/routes/web.php17
4 files changed, 73 insertions, 0 deletions
diff --git a/Year_3/TSDWL/LARAVEL/iBook/routes/api.php b/Year_3/TSDWL/LARAVEL/iBook/routes/api.php
new file mode 100644
index 0000000..eb6fa48
--- /dev/null
+++ b/Year_3/TSDWL/LARAVEL/iBook/routes/api.php
@@ -0,0 +1,19 @@
+<?php
+
+use Illuminate\Http\Request;
+use Illuminate\Support\Facades\Route;
+
+/*
+|--------------------------------------------------------------------------
+| 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:sanctum')->get('/user', function (Request $request) {
+ return $request->user();
+});
diff --git a/Year_3/TSDWL/LARAVEL/iBook/routes/channels.php b/Year_3/TSDWL/LARAVEL/iBook/routes/channels.php
new file mode 100644
index 0000000..5d451e1
--- /dev/null
+++ b/Year_3/TSDWL/LARAVEL/iBook/routes/channels.php
@@ -0,0 +1,18 @@
+<?php
+
+use Illuminate\Support\Facades\Broadcast;
+
+/*
+|--------------------------------------------------------------------------
+| 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.Models.User.{id}', function ($user, $id) {
+ return (int) $user->id === (int) $id;
+});
diff --git a/Year_3/TSDWL/LARAVEL/iBook/routes/console.php b/Year_3/TSDWL/LARAVEL/iBook/routes/console.php
new file mode 100644
index 0000000..e05f4c9
--- /dev/null
+++ b/Year_3/TSDWL/LARAVEL/iBook/routes/console.php
@@ -0,0 +1,19 @@
+<?php
+
+use Illuminate\Foundation\Inspiring;
+use Illuminate\Support\Facades\Artisan;
+
+/*
+|--------------------------------------------------------------------------
+| 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());
+})->purpose('Display an inspiring quote');
diff --git a/Year_3/TSDWL/LARAVEL/iBook/routes/web.php b/Year_3/TSDWL/LARAVEL/iBook/routes/web.php
new file mode 100644
index 0000000..9e4f4aa
--- /dev/null
+++ b/Year_3/TSDWL/LARAVEL/iBook/routes/web.php
@@ -0,0 +1,17 @@
+<?php
+
+use Illuminate\Support\Facades\Route;
+use App\Http\Controllers\BookController;
+
+/*
+|--------------------------------------------------------------------------
+| 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::resource('/books', BookController::class);