File: /var/www/matriculas_api_dev/app/Models/ApiIntegrationLog.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ApiIntegrationLog extends Model
{
protected $table = 'api_integration_logs';
public $timestamps = false;
protected $fillable = [
'endpoint',
'operation',
'entity_type',
'entity_rut',
'entity_id',
'request_payload',
'response_payload',
'status',
'error_message',
'ip_address',
'created_at',
];
protected $casts = [
'request_payload' => 'array',
'response_payload' => 'array',
];
}