aboutsummaryrefslogtreecommitdiff
path: root/routes
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2020-10-07 18:41:35 +0200
committerMateja <mail@matejamaric.com>2020-10-07 18:41:35 +0200
commitb981dc8715b36c83107de4c2868e3410a6faf457 (patch)
tree899a97261d0b901740cfbd949fc0839bb7a1e607 /routes
downloadyota-laravel-b981dc8715b36c83107de4c2868e3410a6faf457.tar.gz
yota-laravel-b981dc8715b36c83107de4c2868e3410a6faf457.zip
First commit
Diffstat (limited to 'routes')
-rw-r--r--routes/api.php19
-rw-r--r--routes/channels.php18
-rw-r--r--routes/console.php19
-rw-r--r--routes/web.php37
4 files changed, 93 insertions, 0 deletions
diff --git a/routes/api.php b/routes/api.php
new file mode 100644
index 0000000..bcb8b18
--- /dev/null
+++ b/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: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..5d451e1
--- /dev/null
+++ b/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/routes/console.php b/routes/console.php
new file mode 100644
index 0000000..e05f4c9
--- /dev/null
+++ b/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/routes/web.php b/routes/web.php
new file mode 100644
index 0000000..d83200b
--- /dev/null
+++ b/routes/web.php
@@ -0,0 +1,37 @@
+<?php
+
+use Illuminate\Support\Facades\Route;
+use App\Http\Controllers\PagesController;
+
+/*
+|--------------------------------------------------------------------------
+| 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('welcome');
+//});
+
+//Route::get('/hello', function () {
+ //return "Hello World!";
+//});
+
+//Route::get('/hello/{id}/{name}', function ($id, $name) {
+ //return "#$id: Hello $name!";
+//});
+
+//Route::get('/about', function () {
+ //return view('about');
+//});
+
+Route::get('/', [PagesController::class, 'index']);
+Route::get('/services', [PagesController::class, 'services']);
+
+Route::get('/about', [PagesController::class, 'about']);
+//Route::get('/about', 'App\Http\Controllers\PagesController@about');