|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/poskrypt/test.poskrypt.com/app/ |
Upload File : |
<?php
namespace App;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class FeedbackQuestion extends Model
{
use HasFactory;
protected $fillable = [
"feedback_id",
"admin_id",
"ques_type",
"icon",
"ques_name",
"welcome_button_text",
"welcome_title",
"welcome_description",
"welcome_show_button",
"rating_shape_type",
"rating_rate_color",
"rating_empty_rate_color",
"rating_title",
"rating_step",
"yes_no_title",
"yes_no_description",
"phone_1",
"phone_2",
"phone_country_code",
"input_text",
"thankyou_button_text",
"thankyou_show_button",
"thankyou_share_button",
"thankyou_loyality_message",
"thankyou_title"
];
}