Releases: BinarCode/laravel-developer
Releases · BinarCode/laravel-developer
2.0.0
1.15.4
1.15.3
1.15.2
1.15.1
1.15.0
1.14.0
1.13.0
Added
Store logs
Sometimes you may want to store simple logs (for instance when you send some API requests from your app, you may want to store the payload):
$payload = [...];
devLog('Called Fedex API with:', $payload)
Now you will have an entry in your database table with the payload and the associated name.