fix mailing an email
This commit is contained in:
@@ -46,9 +46,20 @@
|
||||
<td>{{ $backup['size_formatted'] }}</td>
|
||||
<td>
|
||||
@if($backup['manifest'])
|
||||
@php $components = $backup['manifest']['included_components'] ?? ['database']; @endphp
|
||||
<span class="badge badge-info" title="PHP {{ $backup['manifest']['php_version'] ?? '?' }}, Laravel {{ $backup['manifest']['laravel_version'] ?? '?' }}">
|
||||
<i class="fas fa-database mr-1"></i>DB
|
||||
</span>
|
||||
@if(in_array('env', $components))
|
||||
<span class="badge badge-secondary" title="Configurazione .env">
|
||||
<i class="fas fa-cog mr-1"></i>.env
|
||||
</span>
|
||||
@endif
|
||||
@if(in_array('files', $components))
|
||||
<span class="badge badge-warning" title="File caricati">
|
||||
<i class="fas fa-file mr-1"></i>Files
|
||||
</span>
|
||||
@endif
|
||||
@if(isset($backup['manifest']['db_name']))
|
||||
<small class="text-muted">{{ $backup['manifest']['db_name'] }}</small>
|
||||
@endif
|
||||
|
||||
Reference in New Issue
Block a user