refactor(backend): reorganize domains into Core, Commerce, Ticketing and Shared
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
<?php
|
||||
|
||||
use App\Domains\Auth\Exceptions\AccountLockedException;
|
||||
use App\Domains\Catalog\Exceptions\StockReservationExpiredException;
|
||||
use App\Domains\Purchase\Exceptions\InsufficientStockException;
|
||||
use App\Domains\Purchase\Exceptions\PurchaseExpiredException;
|
||||
use App\Domains\Purchase\Exceptions\PurchaseLimitExceededException;
|
||||
use App\Domains\Ticket\Exceptions\TicketNotAvailableException;
|
||||
use App\Domains\Core\Auth\Exceptions\AccountLockedException;
|
||||
use App\Domains\Commerce\Catalog\Exceptions\StockReservationExpiredException;
|
||||
use App\Domains\Commerce\Purchase\Exceptions\InsufficientStockException;
|
||||
use App\Domains\Commerce\Purchase\Exceptions\PurchaseExpiredException;
|
||||
use App\Domains\Commerce\Purchase\Exceptions\PurchaseLimitExceededException;
|
||||
use App\Domains\Ticketing\Ticket\Exceptions\TicketNotAvailableException;
|
||||
use App\Http\Middleware\EnsureAdminAppTenant;
|
||||
use App\Http\Middleware\EnsureScannerTenant;
|
||||
use App\Http\Middleware\EnsureTenantHasMenu;
|
||||
|
||||
Reference in New Issue
Block a user