31 lines
543 B
PHP
31 lines
543 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class FailoverTransactionFailed extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'failover_transaction_failed';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'original_id',
|
|
'kodcaw',
|
|
'norujukan',
|
|
'code_error',
|
|
'error_message'
|
|
];
|
|
|
|
}
|