29 lines
583 B
PHP
29 lines
583 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Single-row config for the external Cassetto Fiscale service (managed by Super Admin).
|
|
*/
|
|
class FeCassettoServiceConfig extends Model
|
|
{
|
|
protected $table = 'fe_cassetto_service_configs';
|
|
|
|
protected $fillable = [
|
|
'base_url',
|
|
'password_script',
|
|
'username',
|
|
'password',
|
|
'pin',
|
|
];
|
|
|
|
protected $casts = [
|
|
'password_script' => 'encrypted',
|
|
'username' => 'encrypted',
|
|
'password' => 'encrypted',
|
|
'pin' => 'encrypted',
|
|
];
|
|
}
|