First commit

This commit is contained in:
2026-01-13 20:46:44 -06:00
commit d63e4e823a
241 changed files with 59142 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);
}
}