| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace App\DTO;
- use App\Http\Requests\{{modelName}}Request;
- class {{modelName}}DTO
- {
- public function __construct(
- // Add properties here
- ) {
- }
- public static function fromRequest({{modelName}}Request $request): self
- {
- return new self(
- // Initialize properties from $request
- );
- }
- public static function fromArray(array $data): self
- {
- return new self(
- // Initialize properties from $data
- );
- }
- public function toArray(): array
- {
- return [
- // Convert properties to array
- ];
- }
- }
|