|ReportComment newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|ReportComment newQuery() * @method static \Illuminate\Database\Eloquent\Builder|ReportComment query() * @method static \Illuminate\Database\Eloquent\Builder|ReportComment whereComment($value) * @method static \Illuminate\Database\Eloquent\Builder|ReportComment whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|ReportComment whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|ReportComment whereProfileId($value) * @method static \Illuminate\Database\Eloquent\Builder|ReportComment whereReportId($value) * @method static \Illuminate\Database\Eloquent\Builder|ReportComment whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|ReportComment whereUserId($value) * * @mixin \Eloquent */ class ReportComment extends Model { protected $guarded = []; public function profile() { return $this->belongsTo(Profile::class); } }