aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Player.php
blob: 12b95c5d1d905f3774bd1a8548581ba098c99148 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Player extends Model
{
    protected $fillable = [
        'name',
        'team',
        'score',
    ];
}