feat: finalize CDN integration with redirects and Larvel 12 support

This commit is contained in:
dyzulk
2026-01-06 12:12:47 +07:00
parent 875b037a63
commit ce0b646077
2 changed files with 11 additions and 1 deletions

View File

@@ -23,6 +23,8 @@ class CaCertificate extends Model
'organization',
'valid_from',
'valid_to',
'cert_path',
'last_synced_at',
'download_count',
'last_downloaded_at'
];
@@ -30,6 +32,7 @@ class CaCertificate extends Model
protected $casts = [
'valid_from' => 'datetime',
'valid_to' => 'datetime',
'last_synced_at' => 'datetime',
'last_downloaded_at' => 'datetime',
];