refactor(dashboard): move price clients to app namespace and simplify data

This commit is contained in:
2026-08-01 21:55:23 +02:00
parent 69f214ade3
commit 0fa648f833
8 changed files with 31 additions and 32 deletions
+4 -4
View File
@@ -2,10 +2,10 @@
namespace App\Providers;
use App\Features\Dashboard\Clients\ZonneplanPriceClient;
use App\Features\Dashboard\Contracts\PriceClient;
use App\Features\Dashboard\Contracts\PriceRepository;
use App\Features\Dashboard\Repositories\ZonneplanPriceRepository;
use App\Clients\ZonneplanPriceClient;
use App\Contracts\PriceClient;
use App\Contracts\PriceRepository;
use App\Repositories\ZonneplanPriceRepository;
use Carbon\CarbonImmutable;
use Illuminate\Support\Facades\Date;
use Illuminate\Support\Facades\DB;