<?php

use Illuminate\Support\Facades\Route;
use App\Http\Controllers\API\Mobile\Manager\ProfileController;

Route::prefix('/manager')->group(function () {
    Route::group(['middleware' => ['checkcompanyuserrole:Mobile Dashboard']], function () {
        Route::get('/profile', [ProfileController::class, 'index']);
    });
});