refactor: refactor controllers, services, validation and introduce DTOs, FormRequests and domain exceptions

This commit is contained in:
antv
2026-07-09 10:27:47 +07:00
parent 54048bb4ff
commit 326e1f1028
15 changed files with 501 additions and 150 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
namespace App\Exceptions;
use RuntimeException;
class ThankCardException extends RuntimeException
{
// Custom domain exception for thank card operations
}