<?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\UnitHistoryController; Route::controller(UnitHistoryController::class)->prefix('unit-history')->group(function () { Route::get('/me', 'indexMe'); });