@foreach(config('changelog') as $version => $info) @php $id = \Illuminate\Support\Str::slug($version); @endphp
{!! theme()->getSvgIcon('icons/duotune/arrows/arr064.svg', 'svg-icon-3') !!}

{{ theme()->getProductName() }} {{ $version }} - {{ $info['date'] }}

@if(is_array($info['changelog'])) @foreach($info['changelog'] as $label => $records) @if(!empty($records))

{{ ucfirst($label) }}:

    @foreach($records as $record)
  • {!! $record !!}
  • @endforeach
@endif @endforeach @else
  • {!! $info['changelog'] !!}
@endif
@endforeach