Files
numstation-web/app/Models/UserEnquiry.php

34 lines
566 B
PHP
Raw Normal View History

2023-12-22 12:35:55 +08:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class UserEnquiry extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'user_id',
'name',
'phone',
'email',
'title',
'message',
'category',
'status',
'reply',
];
public function user()
{
return $this->belongsTo(User::class);
}
}