add explicit set levels

This commit is contained in:
Yisroel Baum 2026-08-11 22:47:34 +03:00
parent 7e8850b1b2
commit 0d102fcee0
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
7 changed files with 223 additions and 0 deletions

View file

@ -19,7 +19,9 @@ use App\Email\LaravelEmailFactory;
use App\Element\ElementRepository;
use App\Element\EloquentElementRepository;
use App\Set\EloquentSetRepository;
use App\Set\EloquentSetLevelRepository;
use App\Set\SetRepository;
use App\Set\SetLevelRepository;
use App\Schedule\EloquentScheduleRepository;
use App\Schedule\ScheduleRepository;
use App\User\EloquentUserRepository;
@ -55,6 +57,10 @@ class AppServiceProvider extends ServiceProvider
SetRepository::class,
EloquentSetRepository::class,
);
$this->app->bind(
SetLevelRepository::class,
EloquentSetLevelRepository::class,
);
$this->app->bind(
ElementRepository::class,
EloquentElementRepository::class,