Skip to content

Commit 57734cb

Browse files
committed
Merge branch 'add-natural-language-filter-plugin' of https://github.com/HayderHatem/filamentphp.com into add-natural-language-filter-plugin
2 parents c024d38 + de048df commit 57734cb

34 files changed

+1459
-125
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ composer.lock
66
docs/dist
77
docs/filament
88
docs/node_modules
9+
docs/preserved-dist
910
docs/src/navigation.json
1011
docs/src/pages
1112
docs/torchlight-cache

app/Providers/AppServiceProvider.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ public function boot(): void
4949
'plugin' => Plugin::class,
5050
]);
5151

52-
URL::forceScheme('https');
52+
if ($this->app->environment('production')) {
53+
URL::forceScheme('https');
54+
}
5355

5456
RateLimiter::for('vpn_api', function (CheckIfIpIsVpn $job): Limit {
5557
if (

content/articles/leandrocfe-filament-v4-beta-feature-overview.md

Lines changed: 494 additions & 0 deletions
Large diffs are not rendered by default.

content/plugins/hayder-hatem-natural-language-filter.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
name: Natural Language Filter
33
slug: hayder-hatem-natural-language-filter
44
author_slug: hayder-hatem
5-
categories: [table-builder, filter, ai, natural-language, search]
5+
categories: [table-builder]
66
description: AI-powered natural language filtering for Filament tables that supports any language and converts human queries into database filters.
7+
discord_url:
78
docs_url: https://raw.githubusercontent.com/HayderHatem/filament-natural-language-filter/main/README.md
89
github_repository: HayderHatem/filament-natural-language-filter
910
has_dark_theme: true
1011
has_translations: true
1112
versions: [3]
12-
publish_date: 2024-06-02
13+
publish_date: 2024-06-19
1314
---

content/plugins/kenneth-sese-advanced-tables.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ description: Supercharge your tables with powerful features like user customizab
99
discord_url: https://discord.com/channels/883083792112300104/1093480983988281394
1010
github_repository: archilex/filament-filter-sets
1111
docs_urls:
12+
v4: https://raw.githubusercontent.com/archilex/advanced-tables-docs/main/v4.md
1213
v3: https://raw.githubusercontent.com/archilex/advanced-tables-docs/main/README.md
1314
v2: https://raw.githubusercontent.com/archilex/advanced-tables-docs/main/v2.md
1415
v1: https://raw.githubusercontent.com/archilex/advanced-tables-docs/main/v1.md
1516
has_dark_theme: true
1617
has_translations: true
17-
versions: [2, 3]
18+
versions: [2, 3, 4]
1819
publish_date: 2023-10-06
1920
---

content/plugins/pxlrbt-activity-log.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/pxlrbt/filament-activity-log/main/re
99
github_repository: pxlrbt/filament-activity-log
1010
has_dark_theme: true
1111
has_translations: true
12-
versions: [2, 3]
12+
versions: [2, 3, 4]
1313
publish_date: 2023-07-19
1414
---

content/plugins/pxlrbt-environment-indicator.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/pxlrbt/filament-environment-indicato
99
github_repository: pxlrbt/filament-environment-indicator
1010
has_dark_theme: true
1111
has_translations: true
12-
versions: [2, 3]
12+
versions: [2, 3, 4]
1313
publish_date: 2022-07-15
1414
---

content/plugins/pxlrbt-excel.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/pxlrbt/filament-excel/main/readme.md
99
github_repository: pxlrbt/filament-excel
1010
has_dark_theme: true
1111
has_translations: true
12-
versions: [2, 3]
12+
versions: [2, 3, 4]
1313
publish_date: 2022-02-19
1414
---

content/plugins/pxlrbt-spotlight.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/pxlrbt/filament-spotlight/main/readm
99
github_repository: pxlrbt/filament-spotlight
1010
has_dark_theme: false
1111
has_translations: true
12-
versions: [2, 3]
12+
versions: [2, 3, 4]
1313
publish_date: 2022-03-24
1414
---

docs/bin/checkout-latest-filament

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ DOCS_VERSIONS=(
44
1.x
55
2.x
66
3.x
7+
4.x
78
)
89

910
for v in "${DOCS_VERSIONS[@]}"; do

0 commit comments

Comments
 (0)