We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some nice-to-haves, not all essential.
enum
accounting_ledgers.type
dates
casts
Carbon\CarbonImmutable
Carbon\CarbonInterface
initJournal
Money\Currency
USD
src
The text was updated successfully, but these errors were encountered:
Issue #1 misc
23867bf
* Reorder migrations. * Use big intergers for table keys. * Remove enum from database (rely on eloquent). * Laravel 9 style anonymous migrations.
judgej
No branches or pull requests
Some nice-to-haves, not all essential.
enum
for ledger type.accounting_ledgers.type
. Database enums are great, but really hard to manage in Laravel.dates
casting withcasts
in the models (dates
has been deprecated, and removed for Laravel 10).Carbon\CarbonImmutable
for dates, as that is the new default for Laravel 9+. UseCarbon\CarbonInterface
as the common interface.initJournal
should take aMoney\Currency
object to be sure it is valid, and if not supplied, default to the config currency, not hard-codedUSD
.src
directory.The text was updated successfully, but these errors were encountered: