• File: SmsLog.php
  • Full Path: /var/www/sandbox/app/SmsLog.php
  • Date Modified: 04/15/2024 8:53 PM
  • File size: 268 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App;

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

class SmsLog extends Model
{
    use HasFactory;

    protected $fillable = [
        'message_id', 'balance', 'status', 'client_reference'
    ];
}