Passage à Laravel 10 pour Fortify Bootstrap
This commit is contained in:
19
routes/api.php
Normal file
19
routes/api.php
Normal file
@@ -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 and all of them will
|
||||
| be assigned to the "api" middleware group. Make something great!
|
||||
|
|
||||
*/
|
||||
|
||||
Route::middleware('auth:sanctum')->get('/user', function (Request $request) {
|
||||
return $request->user();
|
||||
});
|
||||
18
routes/channels.php
Normal file
18
routes/channels.php
Normal file
@@ -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;
|
||||
});
|
||||
@@ -3,6 +3,17 @@
|
||||
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')->hourly();
|
||||
})->purpose('Display an inspiring quote');
|
||||
|
||||
@@ -2,15 +2,25 @@
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
//Route::get('/', [\App\Http\Controllers\HomeController::class, 'index']);
|
||||
//Route::get('/organizers', [\App\Http\Controllers\HomeController::class, 'organizers']);
|
||||
//Route::get('/organizer/{screen}', [\App\Http\Controllers\HomeController::class, 'organizer']);
|
||||
//Route::get('/category/{slug}', [\App\Http\Controllers\HomeController::class, 'category']);
|
||||
//Route::get('/last-minutes', [\App\Http\Controllers\HomeController::class, 'lastminutes']);
|
||||
//Route::get('/search', [\App\Http\Controllers\HomeController::class, 'search']);
|
||||
//Route::get('/aplifier/list', [\App\Http\Controllers\ContestsController::class, 'twitterlist']);
|
||||
//Route::get('/aplifier/search', [\App\Http\Controllers\ContestsController::class, 'searchcontest']);
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Web Routes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here is where you can register web routes for your application. These
|
||||
| routes are loaded by the RouteServiceProvider and all of them will
|
||||
| be assigned to the "web" middleware group. Make something great!
|
||||
|
|
||||
*/
|
||||
|
||||
Route::get('/fake', [\App\Http\Controllers\FakeController::class, 'index']);
|
||||
Route::get('/', function () {
|
||||
return view('welcome');
|
||||
});
|
||||
|
||||
//Route::get('/img/{path}', [\App\Http\Controllers\WebpController::class, 'show'])->where('path', '.*');
|
||||
Route::view('home', 'home')
|
||||
->name('home')
|
||||
->middleware(['auth']);
|
||||
|
||||
Route::view('profile', 'profile.edit')
|
||||
->name('profile.edit')
|
||||
->middleware(['auth']);
|
||||
|
||||
Reference in New Issue
Block a user