Skip to content

Commit adaf753

Browse files
committed
Merge remote-tracking branch 'origin/main' into pr/896
2 parents cd7d15a + 75d871d commit adaf753

File tree

80 files changed

+245
-119
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+245
-119
lines changed

app/Models/Plugin.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,10 @@ public function getDocUrl(string $version = null): ?string
8585
}
8686

8787
if (filled($this->docs_urls)) {
88-
return $this->docs_urls[$version ?? array_key_last($this->docs_urls)] ?? null;
88+
$docsUrls = $this->docs_urls;
89+
krsort($docsUrls);
90+
91+
return $docsUrls[$version ?? array_key_first($docsUrls)] ?? null;
8992
}
9093

9194
return null;

content/articles/leandrocfe-whats-new-in-filament-v4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To upgrade your app to Filament v4, please read the [upgrade guide](https://fila
1818

1919
## Highlights
2020

21-
There are many new features and improvements in Filament v4 Beta, but here are some of the highlights:
21+
There are many new features and improvements in Filament v4, but here are some of the highlights:
2222

2323
- [**Improved performance**](#improved-performance): Rendering and interaction performance has significantly improved, especially for large tables, where server rendering time typically reduces by 2-3x.
2424
- [**Tailwind CSS v4**](#tailwind-css-v4): The framework now uses Tailwind CSS v4, which brings a reworked configuration system, improved customization, and faster builds.
1.03 MB
Loading
120 KB
Loading

content/authors/avatars/resma.jpg

64 KB
Loading

content/authors/backstage.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
name: Backstage
3+
slug: backstage
4+
github_url: https://github.com/backstagephp
5+
twitter_url: https://twitter.com/backstagephp
6+
sponsor_url: https://github.com/sponsors/vormkracht10
7+
---
8+
9+
Backstage is the CMS for building the modern web. Developed by Vormkracht and built with Laravel and Filament, it offers not only a powerful CMS but also a wide range of ready-to-use Filament plugins.

content/authors/charlie-etienne.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
name: Charlie Etienne
3+
slug: charlie-etienne
4+
github_url: https://github.com/CharlieEtienne
5+
twitter_url: https://twitter.com/charlie_etienne
6+
sponsor_url: https://github.com/sponsors/CharlieEtienne
7+
---
8+
9+
I’m an indie Laravel and PHP developer with 15+ years of experience. I believe Filament is one of the best things to happen to web development, and I’m proud to be part of this awesome community.

content/authors/resma.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
name: Resma
3+
slug: resma
4+
github_url: https://github.com/resmatech
5+
---
6+
At [Resma](https://resma.tech), We design and develop custom websites, mobile apps, and web applications that drive growth and solve real business challenges. From concept to reality, we transform your vision into a powerful digital solution.

content/plugins/achyutn-log-viewer.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@ author_slug: achyutn
55
categories: [developer-tool, analytics]
66
description: A developer-focused Laravel log viewer with stack trace inspection, built for Filament.
77
discord_url: https://discord.com/channels/883083792112300104/1401970431312920627
8-
docs_url: https://raw.githubusercontent.com/achyutkneupane/filament-log-viewer/refs/heads/master/README.md
8+
docs_urls:
9+
v4: https://raw.githubusercontent.com/achyutkneupane/filament-log-viewer/refs/heads/filament-v4/README.md
10+
v3: https://raw.githubusercontent.com/achyutkneupane/filament-log-viewer/refs/heads/filament-v3/README.md
911
github_repository: achyutkneupane/filament-log-viewer
1012
has_dark_theme: true
1113
has_translations: false
12-
versions: [3]
14+
versions: [3, 4]
1315
publish_date: 2025-08-04
1416
---

content/plugins/alkoumi-image-radio-button.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ docs_url: https://raw.githubusercontent.com/alkoumi/filament-image-radio-button/
99
github_repository: alkoumi/filament-image-radio-button
1010
has_dark_theme: true
1111
has_translations: false
12-
versions: [3]
12+
versions: [3 ,4]
1313
publish_date: 2025-03-22
1414
---

0 commit comments

Comments
 (0)