Skip to content

Commit

Permalink
Apply automatic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan-Cowin authored and github-actions[bot] committed Nov 27, 2024
1 parent c5ef762 commit 2c2bef4
Showing 1 changed file with 7 additions and 18 deletions.
25 changes: 7 additions & 18 deletions routes/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,20 @@
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;




Route::middleware([
'auth:sanctum'
'auth:sanctum',
]



)->get('/user',
function (Request
$request) {
return
$request
->user()
;
}

function (Request $request) {
return
$request
->user();
}

);

Route::get('/test', function () {



return
'test';
return 'test';
});

0 comments on commit 2c2bef4

Please sign in to comment.