classify admin

This commit is contained in:
Husanjonazamov
2026-02-24 12:52:01 +05:00
commit e0f1989655
769 changed files with 1263008 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class ReportReasonTranslation extends Model
{
use HasFactory;
protected $fillable = [
'report_reason_id',
'language_id',
'reason'
];
public function reportReason() {
return $this->belongsTo(ReportReason::class);
}
public function language() {
return $this->belongsTo(Language::class);
}
}