You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .ai/filament/4/core.blade.php
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,3 +9,9 @@
9
9
- The `Form` & `Infolist` layout components have been moved to `Filament\Schemas\Components`, for example `Grid`, `Section`, `Fieldset`, `Tabs`, `Wizard`, etc.
10
10
- A new `Repeater` component for Forms has been added.
11
11
- Icons now use the `Filament\Support\Icons\Heroicon` Enum by default. Other options are available and documented.
Copy file name to clipboardExpand all lines: .ai/filament/core.blade.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
- Filament is used by this application, check how and where to follow existing application conventions.
3
3
- Filament is a Server-Driven UI (SDUI) framework for Laravel. It allows developers to define user interfaces in PHP using structured configuration objects. It is built on top of Livewire, Alpine.js, and Tailwind CSS.
4
4
- You can use the `search-docs` tool to get information from the official Filament documentation when needed. This is very useful for Artisan command arguments, specific code examples, testing functionality, relationship management, and ensuring you're following idiomatic practices.
5
+
- Utilize static `make()` methods for consistent component initialization.
5
6
6
7
### Artisan
7
8
- You must use the Filament specific Artisan commands to create new files or components for Filament. You can find these with the `list-artisan-commands` tool, or with `php artisan` and the `--help` option.
@@ -29,7 +30,7 @@
29
30
</code-snippet>
30
31
@endverbatim
31
32
32
-
### Testing
33
+
## Testing
33
34
- It's important to test Filament functionality for user satisfaction.
34
35
- Ensure that you are authenticated to access the application within the test.
35
36
- Filament uses Livewire, so start assertions with `livewire()` or `Livewire::test()`.
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/1_Bug_report.yml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -27,11 +27,11 @@ body:
27
27
required: true
28
28
- type: input
29
29
attributes:
30
-
label: Database Driver & Version
31
-
description: If applicable, provide the database driver and version you are using.
32
-
placeholder: "MySQL 8.0.31 for macOS 13.0 on arm64 (Homebrew)"
30
+
label: System Info
31
+
description: Provide your system details including OS, PHP setup, and development environment.
32
+
placeholder: "macOS 14.1 (M1) with Herd or Ubuntu 22.04 with Laravel Sail"
33
33
validations:
34
-
required: false
34
+
required: true
35
35
- type: textarea
36
36
attributes:
37
37
label: Description
@@ -44,4 +44,4 @@ body:
44
44
description: Provide detailed steps to reproduce your issue. If necessary, please provide a GitHub repository to demonstrate your issue using `laravel new bug-report --github="--public"`.
* tools: report-feedback: strengthen language on privacy by [@ashleyhindle](https://github.com/ashleyhindle) in https://github.com/laravel/boost/pull/103
* fixes #70 - make sure foundational rules are composed by [@ashleyhindle](https://github.com/ashleyhindle) in https://github.com/laravel/boost/pull/84
18
+
* Update the bug report template's system info section by [@pushpak1300](https://github.com/pushpak1300) in https://github.com/laravel/boost/pull/98
19
+
* Update Filament Guidelines by [@pushpak1300](https://github.com/pushpak1300) in https://github.com/laravel/boost/pull/35
20
+
* Fix: Prevent autoloading non class-like files during discovery to avoid "FatalError: Cannot redeclare function" by [@zdearo](https://github.com/zdearo) in https://github.com/laravel/boost/pull/99
21
+
22
+
### New Contributors
23
+
24
+
*[@zdearo](https://github.com/zdearo) made their first contribution in https://github.com/laravel/boost/pull/99
0 commit comments