A wonderful wallet interface for managing your money.
muath-ye/laravel-wallet is a Laravel package for a wonderful wallet interface for managing your money..
It currently has 1 GitHub stars and 6 downloads on Packagist (latest version 1.0.0).
Install it with composer require muath-ye/laravel-wallet.
Discover more Laravel packages by muath-ye
or browse all Laravel packages to compare alternatives.
Last updated
This is a package to audit all http requests in your project.
Require this package with composer.
composer require muath-ye/audit
Laravel uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
The Audit will be enabled automatically but you can stop it when change MUATHYE_AUDIT_ENABLED is false.
If you use a catch-all/fallback route, make sure you load the Muathye ServiceProvider before your own App ServiceProviders.
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
Muathye\Audit\ServiceProvider::class,
php artisan vendor:publish --provider="Muathye\Audit\ServiceProvider"
update your .env file as following:
MUATHYE_AUDIT_ENABLED=true
You can enable or disable the audit during run time.
\Audit::enable();
\Audit::disable();
Note Audit::class is registered as an aliese for Muathye\Audit\Support\Audit::class
Use can use helper functions :
enableAudit();
disableAudit();