···4141php artisan make:atp-request TrendingClient --domain=bsky --public
4242```
43434444-The generated files are placed in `app/Services/Clients/` (domain clients) and `app/Services/Clients/Requests/` (request clients). You can customize these paths in `config/client.php`:
4444+The generated files are placed in configurable directories. You can customize these paths in `config/client.php`:
45454646```php
4747'generators' => [
4848 'client_path' => 'app/Services/Clients',
4949+ 'client_public_path' => 'app/Services/Clients/Public',
4950 'request_path' => 'app/Services/Clients/Requests',
5151+ 'request_public_path' => 'app/Services/Clients/Public/Requests',
5052],
5153```
5254