You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Custom Larvel 5.6+ Log channel handler that can store log events to SQL or MongoDB databases.
9
+
Custom Laravel 6/5.6+ Log channel handler that can store log events to SQL or MongoDB databases.
10
10
Uses Laravel native logging functionality.
11
11
12
12
## Installation
13
+
For latest Laravel 6 Support
13
14
```
14
15
require danielme85/laravel-log-to-db
15
16
```
16
17
18
+
For Laravel 5.6 -> 5.* Support you can either use the v1 branch or a v1 release, ex:
19
+
```
20
+
require danielme85/laravel-log-to-db:dev-v1
21
+
```
22
+
or
23
+
```
24
+
require danielme85/laravel-log-to-db "~1.1"
25
+
```
26
+
17
27
If you are going to be using SQL database server to store log events you would need to run the migrations first. The MongoDB driver does not require the migration.
0 commit comments