{{ $this->techStack['name'] }}

Versi Aplikasi: {{ $this->techStack['version'] }}

@foreach ($this->techStack['stack'] as $tech => $version)

{{ $tech }}

{{ $version }}

@endforeach
@if (count($this->changelogs))
@foreach ($this->changelogs as $log)
{{ $log->type->getLabel() }} {{ $log->formatted_version }}
{{ $log->formatted_release_date }}

{{ $log->title }}

@if ($log->description)
{!! $log->description !!}
@endif
Daftar Perubahan
    @foreach ($log->changes as $change)
  • {{ $change }}
  • @endforeach
@canAny(['Update:Changelog', 'Delete:Changelog'])
{{ ($this->editChangelogAction)(['record' => $log->id]) }} {{ ($this->deleteChangelogAction)(['record' => $log->id]) }}
@endcanAny
@endforeach
@else @endif