أُنشئ من Tokal/Test
24 أسطر
384 B
PHP
24 أسطر
384 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class UserFeedback extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'user_feedback';
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'message',
|
|
];
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
}
|