love_php/app/Models/Live/Platfrom.php

18 lines
325 B
PHP
Raw Normal View History

2026-04-02 09:20:51 +08:00
<?php
namespace App\Models\Live;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Platfrom extends Model
{
//
use SoftDeletes;
protected $table = 'live_platfroms';
public function viewer(){
return $this->hasMany(Viewer::class, 'source', 'code');
}
}