{{-- resources/views/system/changelog.blade.php --}} @extends('layouts.app') @section('title', 'Changelog') @section('page_title', 'What\'s New') @section('page_subtitle', 'Recent updates and improvements to Kubhuka Lite') @section('content')
@if($versions->isEmpty())

No releases published yet

@else @foreach($versions as $version) @php $typeColors = [ 'major' => ['bg'=>'#fee2e2','color'=>'#991b1b'], 'minor' => ['bg'=>'#dbeafe','color'=>'#1e40af'], 'patch' => ['bg'=>'#d1fae5','color'=>'#065f46'], 'hotfix' => ['bg'=>'#fef3c7','color'=>'#92400e'], ]; $tc = $typeColors[$version->type] ?? $typeColors['patch']; @endphp
v{{ $version->version }} {{ ucfirst($version->type) }} {{ $version->title }}
{{ $version->released_at?->format('d M Y') }}
{{ $version->release_notes }}
@endforeach @endif
@endsection