first commit

This commit is contained in:
2026-01-13 20:57:58 -06:00
commit afd9118d1e
239 changed files with 49001 additions and 0 deletions

29
app/ReportComment.php Normal file
View File

@@ -0,0 +1,29 @@
<?php
namespace App;
use App\User;
use App\Report;
use Illuminate\Database\Eloquent\Model;
class ReportComment extends Model
{
//
protected $fillable = [
'report_id',
'user_id',
'comment',
];
public function reports()
{
return $this->belongsTo(Report::class);
}
public function user()
{
return $this->belongsTo(User::class);
}
}