diff --git a/README.md b/README.md index ed1b4b2..136a1a4 100644 --- a/README.md +++ b/README.md @@ -178,12 +178,6 @@ Generate `resources/js/types-eloquent.d.ts` file with all models types. php artisan typescriptable:eloquent ``` -With options: - -- --`M`|`models-path`: Path to models directory. -- --`O`|`output-path`: Path to output. -- --`P`|`php-path`: Path to output PHP classes, if null will not print PHP classes. - ### Spatie Settings If you use [`spatie/laravel-settings`](https://github.com/spatie/laravel-settings), you can generate `resources/js/types-settings.d.ts` file with all settings types. @@ -192,11 +186,6 @@ If you use [`spatie/laravel-settings`](https://github.com/spatie/laravel-setting php artisan typescriptable:settings ``` -With options: - -- --`S`|`settings-path`: Path to settings directory. -- --`O`|`output-path`: Path to output. - ### Routes Generate `resources/js/types-routes.d.ts` file with all routes types and `resources/js/routes.ts` for routes references. @@ -205,10 +194,13 @@ Generate `resources/js/types-routes.d.ts` file with all routes types and `resour php artisan typescriptable:routes ``` -With options: +### Eloquent listing + +Show all Eloquent models with `eloquent:list` command. -- --`R`|`routes-path`: Path to routes directory. -- --`O`|`output-path`: Path to output. +```bash +php artisan eloquent:list +``` ## Advanced