messages implemented

This commit is contained in:
2026-02-26 21:12:32 +01:00
parent d0aefc5ddc
commit 15b7b77d20
168 changed files with 14728 additions and 6786 deletions

26
app/Models/Report.php Normal file
View File

@@ -0,0 +1,26 @@
<?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');
}
}