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
@@ -0,0 +1,13 @@
<?php
namespace App\Features\History\Requests;
use Carbon\Carbon;
use Spatie\LaravelData\Data;
class HistoryRequest extends Data
{
public function __construct(
public ?Carbon $date
) {}
}