]> git.localhorst.tv Git - alttp.git/blob - app/Models/Restream.php
track twitch category where chats were sent in
[alttp.git] / app / Models / Restream.php
1 <?php
2
3 namespace App\Models;
4
5 use Illuminate\Database\Eloquent\Relations\Pivot;
6
7 class Restream extends Pivot {
8
9         public $incrementing = true;
10
11         protected $casts = [
12                 'accept_comms' => 'boolean',
13                 'accept_tracker' => 'boolean',
14         ];
15
16 }
17
18 ?>