{{ $value['host'] ?? ' ' }} |
{{ $value['ttl'] ?? ' ' }} |
{{ $value['class'] ?? ' ' }} |
{{ $value['type'] ?? ' ' }} |
{{ $value['pri'] ?? ' ' }} |
@foreach ($value as $key => $val)
@if ($key != 'host' && $key != 'ttl' && $key != 'class' && $key != 'type' && $key != 'pri')
{{ is_array($val) ? implode(', ', $val) : $val }}
@endif
@endforeach
|
@endforeach