feat(history): add energy price history feature

This commit is contained in:
2026-08-02 11:29:58 +02:00
parent 1511de31a8
commit f70f3ab054
20 changed files with 262 additions and 52 deletions
+2
View File
@@ -1,8 +1,10 @@
<?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');
});