21 lines
301 B
PHP
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' ? "联盟" : "代理";
|
|
}
|
|
|
|
}
|