@extends('layouts.app', ['title' => 'Downloads']) @section('content')

Software downloads & updates

Access released builds associated with your licensed products.

@foreach ($versions as $version)
{{ $version->product?->name }}
{{ $version->version }}
{{ ucfirst($version->release_channel) }} release • {{ $version->released_at?->format('Y-m-d') }}
{{ $version->release_notes ?: 'Release notes not provided.' }}
@if ($version->download_url) Download package @endif
@endforeach
{{ $versions->links() }}
@endsection