love_php/app/Models/Live/LiveChannel.php

16 lines
265 B
PHP
Raw Permalink Normal View History

2026-04-02 09:20:51 +08:00
<?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');
}
}