20 lines
326 B
PHP
20 lines
326 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DutyUnwantedEvent extends Model
|
|
{
|
|
protected $fillable = [
|
|
'report_duty_id',
|
|
'title',
|
|
'comment',
|
|
];
|
|
|
|
public function reportDuty()
|
|
{
|
|
return $this->belongsTo(ReportDuty::class, 'report_duty_id');
|
|
}
|
|
}
|