love_php/app/Models/Live/LiveChannel.php
2026-04-02 09:20:51 +08:00

16 lines
265 B
PHP

<?php
namespace App\Models\Live;
use Illuminate\Database\Eloquent\Model;
class LiveChannel extends Model
{
use SoftDeletes;
protected $table = 'live_channel';
public function live(){
return $this->hasMany(Live::class, 'channel_id');
}
}