unit_history.php 226 B

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