SystemHttpLog.php
327 Bytes
<?php
namespace App\Models;
use App\Support\Model;
class SystemHttpLog extends Model
{
protected $table = 'system_http_logs';
protected $guarded = [];
public $timestamps = false;
/**
* @var string[]
*/
protected $casts = [
'request' => 'json',
'response' => 'json'
];
}