27 lines
505 B
PHP
27 lines
505 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class Report extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'reporter_id',
|
|
'target_type',
|
|
'target_id',
|
|
'reason',
|
|
'details',
|
|
'status',
|
|
];
|
|
|
|
public function reporter(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'reporter_id');
|
|
}
|
|
}
|