sintonia_webapp/app/Models/Show/ShowRebroadcast.php

19 lines
381 B
PHP

<?php
namespace App\Models\Show;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
class ShowRebroadcast extends Model
{
use SoftDeletes;
protected $table = 'cc_show_rebroadcast';
public function show(): BelongsTo
{
return $this->belongsTo(Show::class);
}
}