From 2ae18f4a154b1e4564b1572ec44014831938c2ae Mon Sep 17 00:00:00 2001 From: Kekeocha Justin Chetachukwu <39213342+justinkekeocha@users.noreply.github.com> Date: Thu, 14 Sep 2023 10:22:09 +0100 Subject: [PATCH] docs: move configuration details to separate file Signed-off-by: Kekeocha Justin Chetachukwu <39213342+justinkekeocha@users.noreply.github.com> --- docs/installation.md | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index ecaafde97..597714145 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -16,15 +16,4 @@ You can publish the config file with this artisan command: php artisan vendor:publish --tag=laravel-wallet-config ``` -After installing the package, you can proceed to [use it](basic-usage). - -You can customize the configuration file to suit certain needs. Example: - -Customize `name` and `slug` of default wallet. -```php[config/wallet.php] -'default' => [ - 'name' => 'Ethereum', - 'slug' => 'ETH', - 'meta' => [], - ], -``` +After installing the package, you can proceed to [use it](basic-usage) or [configure](configuration) it to suit your needs.