summaryrefslogtreecommitdiff
path: root/src/Models/LogEntry.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-09-16 12:06:18 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2018-09-16 12:06:18 +0200
commit0734807eef5a6b638b06d57aef6ee59ac78a3456 (patch)
tree3af73fdc293ab18962078c1a92e07d803009f1f5 /src/Models/LogEntry.php
parentd0abc27c079f058c40a74b89e54bd21ba4aad53e (diff)
parentac48332166ce28fcb1a2fc130c7f5adbc760e42d (diff)
Merge remote-tracking branch 'MyIgel/logentry-model'
Diffstat (limited to 'src/Models/LogEntry.php')
-rw-r--r--src/Models/LogEntry.php46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/Models/LogEntry.php b/src/Models/LogEntry.php
new file mode 100644
index 00000000..ca9702de
--- /dev/null
+++ b/src/Models/LogEntry.php
@@ -0,0 +1,46 @@
+<?php
+
+namespace Engelsystem\Models;
+
+use Illuminate\Database\Eloquent\Builder;
+use Illuminate\Database\Eloquent\Collection;
+
+class LogEntry extends BaseModel
+{
+ /** @var bool enable timestamps for created_at */
+ public $timestamps = true;
+
+ /** @var null Disable updated_at */
+ const UPDATED_AT = null;
+
+ /**
+ * The attributes that are mass assignable.
+ *
+ * @var array
+ */
+ protected $fillable = [
+ 'level',
+ 'message',
+ ];
+
+ /**
+ * @param $keyword
+ * @return Builder[]|Collection|LogEntry[]
+ */
+ public static function filter($keyword = null)
+ {
+ $query = LogEntry::query()
+ ->select()
+ ->orderByDesc('created_at')
+ ->orderByDesc('id')
+ ->limit(10000);
+
+ if (!empty($keyword)) {
+ $query
+ ->where('level', '=', $keyword)
+ ->orWhere('message', 'LIKE', '%' . $keyword . '%');
+ }
+
+ return $query->get();
+ }
+}