Skip to content

Commit 4b8b02b

Browse files
Update packages and remove known issue
1 parent 1e94030 commit 4b8b02b

File tree

8 files changed

+57
-63
lines changed

8 files changed

+57
-63
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ Larament is a **bloat-free starter kit** for quickly launching **Laravel 12.x**
1414
> [!NOTE]
1515
> Larament requires **PHP 8.3** or higher to run.
1616
17-
## Known Issues
18-
19-
- **Table Configuration**: The global table configuration using `Table::configureUsing()` in `AppServiceProvider` is currently broken. This is a known issue in Filament 4 beta. You'll need to configure table settings individually in each table's configuration until this is fixed.
20-
2117
## Dependencies
2218

2319
This project includes several core dependencies that provide essential functionality:

app/Filament/Resources/Users/UserResource.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ public static function form(Schema $schema): Schema
2929

3030
public static function table(Table $table): Table
3131
{
32-
return UsersTable::configure($table)
33-
->striped() // Can be removed once `configureUsing` issue is resolved. (https://github.com/filamentphp/filament/issues/16504)
34-
->deferLoading();
32+
return UsersTable::configure($table);
3533
}
3634

3735
public static function getRelations(): array

composer.lock

Lines changed: 51 additions & 51 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/css/filament/filament/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/filament/actions/actions.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/filament/forms/components/date-time-picker.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/filament/forms/components/select.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)