]> git.localhorst.tv Git - alttp.git/blob - Restream.php
8be7e2d1f3320417c5ebc059859db95e396522c8
[alttp.git] / 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 ?>