8000 GitHub - abdurashid-dev/Rest-api-crud: Laravel 8 REST API With Sanctum Authentication
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

abdurashid-dev/Rest-api-crud

Repository files navigation

Laravel REST API with Sanctum

This is an example of a REST API using auth tokens with Laravel Sanctum

Usage

Change the .env.example to .env and add your database info

For Mysql, add

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=rest-api
DB_USERNAME=root
DB_PASSWORD=123456

Routes

# Public

GET   /api/products
GET   /api/products/:id

POST   /api/login
@body: email, password

POST   /api/register
@body: name, email, password, password_confirmation


# Protected

POST   /api/products
@body: name, slug, description, price

PUT   /api/products/:id
@body: ?name, ?slug, ?description, ?price

DELETE  /api/products/:id

POST    /api/logout

About

Laravel 8 REST API With Sanctum Authentication

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0