Sanctum Authentication
some authentication code to authenticate users using Laravel Sanctum
This guide shows how to create an API with Laravel Sanctum. You will need to adjust the final output to fit our model. You can view the expected response from different perspectives using the following tools:
Create Controller
Create new controller in Http/Controllers/AuthController.php by the following command:
php artisan make:controller AuthControllerthen, add routes for api in api.php file and include AuthController
Create Route
Open api.php from routes folder and replace the code of route with the following:
<?php
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\AuthController;
/*
|--------------------------------------------------------------------------
| 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::group(['prefix' => 'auth'], function () {
Route::post('login', [AuthController::class, 'login']);
Route::post('register', [AuthController::class, 'register']);
Route::group(['middleware' => 'auth:sanctum'], function() {
Route::get('logout', [AuthController::class, 'logout']);
Route::get('user', [AuthController::class, 'user']);
});
});Register User API
Open Http/Controllers/AuthController.php and replace below code:
Body (Add body data on your postman like below table)
name
text
Name of the user
email
text
Email of the user
password
text
Password of the user
c_password
text
Confirm password
After this click on send button and get response like below.
Response
Capture screenshot of postman for demo purpose:

Login User API
In the same file Http/Controllers/AuthController.php, add below code before register method:
Body (Add body data on your postman like below table)
email
text
Email of the user
password
text
Password of the user
After this click on send button and get response like below
Response
Capture screenshot of postman for demo purpose:

Get User API
In the same file Http/Controllers/AuthController.php, add below code after Login method:
Headers (Add Headers data on your postman like below table)
accept
application/json
Authorization
Bearer <Token>
After this click on send button and get response like below
Response
Capture screenshot of postman for demo purpose:

Logout User API
In the same file Http/Controllers/AuthController.php, add below code after User method:
Headers (Add Headers data on your postman like below table)
accept
application/json
Authorization
Bearer <Token>
After this click on send button and get response like below
Response
Capture screenshot of postman for demo purpose:

Last updated