-
Notifications
You must be signed in to change notification settings - Fork 5
/
api.php
26 lines (22 loc) · 1017 Bytes
/
api.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
use App\Http\Controllers\Api\ApiDeviceLoginController;
use App\Http\Controllers\Api\UsersController;
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::post('device-login', [ApiDeviceLoginController::class, 'create'])->name('device.login');
Route::middleware('auth:sanctum')->name('api')->group(function () {
Route::prefix('users')->group(function () {
Route::get('me', [UsersController::class, 'me'])->name('.users.me');
Route::put('update', [UsersController::class, 'update'])->name('.users.update');
Route::delete('destroy', [UsersController::class, 'destroy'])->name('.users.destroy');
});
});