<?php

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

Route::prefix('/supervisor')->group(function () {

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