Replies: 5 comments 5 replies
-
What about beta26? |
Beta Was this translation helpful? Give feedback.
-
Please make sure the |
Beta Was this translation helpful? Give feedback.
-
Same: getting Using beta27, with intl enabled. Also: TableWidget is not mentioned in v3 documentation. |
Beta Was this translation helpful? Give feedback.
-
Use the public function table(Table $table): Table
{
return $table
->query(\App\Models\Order::where("status_id", 2)->orderBy('id', 'desc'))
->columns([
Tables\Columns\TextColumn::make('id')->label('#'),
Tables\Columns\TextColumn::make('full_name')->label(__('Name')),
])
->filters([
// ...
])
->actions([
// ...
])
->bulkActions([
// ...
]);
} |
Beta Was this translation helpful? Give feedback.
-
I am facing this issue now and I found the solution is to Disable the lazy loading of the TableWidget
|
Beta Was this translation helpful? Give feedback.
-
i get the following errors during the latest v3 upgrade:
Typed property Filament\Widgets\TableWidget::$table must not be accessed before initialization
Class "NumberFormatter" not found
[vite:css] Failed to find '../../vendor/filament/filament/resources/css/app.css'
in [
C:\xampp\htdocs\modatex-chile-three\resources\css
]
file: C:\xampp\htdocs\modatex-chile-three\resources\css\filament.css
Any tips? Thanks
Beta Was this translation helpful? Give feedback.
All reactions