Your IP : 216.73.216.93


Current Path : /home/users/unlimited/www/api.xalonx.com/app/Models/
Upload File :
Current File : /home/users/unlimited/www/api.xalonx.com/app/Models/Conversions.php

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class Conversions extends Model
{
    use HasFactory;

    protected $table = 'conversions';

    public $timestamps = true; //by default timestamp false

    protected $fillable = ['room_id', 'sender_id', 'message_type', 'message', 'reported', 'extra_fields', 'status'];

    protected $hidden = [
        'created_at',
    ];
}