23 lines
458 B
PHP
23 lines
458 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class FeedbackReaction extends Model
|
||
|
|
{
|
||
|
|
use HasFactory;
|
||
|
|
protected $table = "feedback_reaction";
|
||
|
|
protected $fillable = [
|
||
|
|
"id",
|
||
|
|
"feedback_reaction_xid",
|
||
|
|
"feedback_reaction_title",
|
||
|
|
"is_active",
|
||
|
|
"created_by",
|
||
|
|
"modified_by",
|
||
|
|
"created_at",
|
||
|
|
"updated_at",
|
||
|
|
|
||
|
|
];}
|