]> git.localhorst.tv Git - alttp.git/blob - app/Models/ChannelCrew.php
exclude 0 scores from leaderboard calculation
[alttp.git] / app / Models / ChannelCrew.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 ChannelCrew extends Model
9 {
10         use HasFactory;
11
12         public function channel() {
13                 return $this->belongsTo(Channel::class);
14         }
15
16         public function user() {
17                 return $this->belongsTo(User::class);
18         }
19
20         protected $casts = [
21                 'user_id' => 'string',
22         ];
23
24 }