0
0
Files
Babyclass/app/Models/Team.php
2020-08-04 10:09:42 +08:00

21 lines
301 B
PHP

<?php
namespace App\Models;
use App\User;
class Team extends Model
{
public function user()
{
return $this->belongsTo(User::class)->withDefault();
}
protected function getTypeTextAttribute()
{
return $this->status == 'alliance' ? "联盟" : "代理";
}
}