Primo commit
This commit is contained in:
19
app/Livewire/Privacy.php
Normal file
19
app/Livewire/Privacy.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Livewire;
|
||||
|
||||
use Livewire\Component;
|
||||
use App\Models\Setting;
|
||||
|
||||
class Privacy extends Component
|
||||
{
|
||||
public function render()
|
||||
{
|
||||
$settings = Setting::instance();
|
||||
|
||||
return view('livewire.privacy', [
|
||||
'congregazione' => $settings->congregazione_nome ?? 'Congregazione',
|
||||
'auditRetention' => $settings->audit_retention_days ?? 365,
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user