Skip to content

Commit

Permalink
Merge pull request #844 from bavix/uuid-docs
Browse files Browse the repository at this point in the history
add docs bavix/laravel-wallet-uuid
  • Loading branch information
rez1dent3 authored Jan 13, 2024
2 parents 0d6a79e + e7667d5 commit a9c30b7
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 6 deletions.
13 changes: 7 additions & 6 deletions docs/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@
- [Batch transactions](batch-transactions)
- [Batch transfers](batch-transfers)

- Nova

- [Change of balance](nova-action)

- Purchases

- [Payment](payment)
Expand All @@ -54,6 +50,11 @@
- [Race condition](race-condition)
- [Atomic Service](atomic-service)

- Additions

- [Wallet Swap](laravel-wallet-swap)
- [Wallet UUID](laravel-wallet-uuid)

- Events

- [BalanceUpdatedEvent](balance-updated-event)
Expand All @@ -65,6 +66,6 @@

- [Create Wallet](command-create-wallet)

- Additions
- Nova

- [Wallet Swap](laravel-wallet-swap)
- [Change of balance](nova-action)
27 changes: 27 additions & 0 deletions docs/laravel-wallet-uuid.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
## Laravel Wallet UUID

> Using uuid greatly reduces package performance. We recommend using int.
Often there is a need to store an identifier in uuid/ulid. Since version 9.0 laravel-wallet supports string identifiers, you only need to perform the migration.

To simplify the process, you can use a ready-made package.

> Attention! It will not work to use UUID instead of ID in wallet models; there is a special uuid field for this.
## Composer

The recommended installation method is using [Composer](https://getcomposer.org/).

In your project root just run:

```bash
composer req bavix/laravel-wallet-uuid
```

Now you need to migrate!

After migration, you can use the UUID in your models.

You can find implementation examples in the package tests: https://github.com/bavix/laravel-wallet-uuid/tree/master/tests

It worked!

0 comments on commit a9c30b7

Please sign in to comment.