> ## Documentation Index
> Fetch the complete documentation index at: https://docs.larafast.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Changelog

> Changelog Component

The Changelog feature allows you to keep your users informed about updates, new features, and improvements in your application.

## Overview

The Changelog page displays a list of changes made to your application over time. Each changelog entry includes:

* Publication date
* Tags (optional)
* Detailed description (markdown supported)

## Usage

### Creating a Changelog Entry

You can create a new changelog entry from Admin panel. Go to `Changelog` page and click on `Create new entry` button.

### Route

```php theme={null}
Route::get('changelog', [ChangelogController::class, 'index'])->name('changelog.index');
```

### View

```php theme={null}
resources/views/pages/changelog.blade.php
```
