11 lines
393 B
PHP
11 lines
393 B
PHP
<?php
|
|
|
|
use App\Features\Dashboard\Controllers\DashboardController;
|
|
use App\Features\History\Controllers\HistoryController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::name('api.')->group(function () {
|
|
Route::get('/energy-prices', [DashboardController::class, 'index'])->name('dashboard.index');
|
|
Route::get('/history', [HistoryController::class, 'index'])->name('history.index');
|
|
});
|