PHP code example of tsarturi / simpledto

1. Go to this page and download the library: Download tsarturi/simpledto library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

tsarturi / simpledto example snippets




$dto = new UserDTO( [ 'name' => 'name', 'email' => '[email protected]']);




$dto = new UserDTO( [ 'name' => 'name', 'email' => '[email protected]'], UserStoreRequest::class);


php artisan vendor:publish --provider="Tsarturi\SimpleDTO\Providers\SimpleDTOServiceProvider" --tag=config

php artisan make:simpledto UserDTO

php artisan make:simpledtoformrequest UserStoreRequest