]> git.localhorst.tv Git - alttp.git/blob - app/Models/ChatLog.php
log irc messages
[alttp.git] / app / Models / ChatLog.php
1 <?php
2
3 namespace App\Models;
4
5 use Illuminate\Database\Eloquent\Factories\HasFactory;
6 use Illuminate\Database\Eloquent\Model;
7
8 class ChatLog extends Model {
9
10         use HasFactory;
11
12         protected $casts = [
13                 'params' => 'array',
14                 'tags' => 'array',
15         ];
16
17         protected $fillable = [
18                 'command',
19                 'nick',
20                 'params',
21                 'tags',
22         ];
23
24 }