From 133170e1ca37beccaa1f3ce62b5bdf9f9c8239dd Mon Sep 17 00:00:00 2001 From: Kekeocha Justin Chetachukwu <39213342+justinkekeocha@users.noreply.github.com> Date: Tue, 12 Sep 2023 01:39:56 +0100 Subject: [PATCH] Update installation.md Signed-off-by: Kekeocha Justin Chetachukwu <39213342+justinkekeocha@users.noreply.github.com> --- docs/installation.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/installation.md b/docs/installation.md index 43b4f5e1f..ecaafde97 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -17,3 +17,14 @@ 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' => [], + ], +```