CountryDTO.php 401 B

12345678910111213141516171819
  1. <?php
  2. namespace App\DTO;
  3. use App\Http\Requests\CountryRequest;
  4. readonly class CountryDTO extends BaseDTO
  5. {
  6. public function __construct(
  7. public ?string $name = null,
  8. public ?string $code = null,
  9. public ?string $status = null,
  10. ) {}
  11. public static function fromRequest(CountryRequest $request): self
  12. {
  13. return new self(...$request->validated());
  14. }
  15. }