omar abdou
omar abdou
FFilament
Created by omar abdou on 1/29/2025 in #❓┊help
Uncaught TypeError: Cannot read properties of undefined (reading 'from')
No description
3 replies
FFilament
Created by omar abdou on 1/9/2025 in #❓┊help
Route query string values don't persist with pagination in Table
Hello , good evening i need help here is my code :
public static function table(Table $table): Table
{
return $table
->query(
Transaction::query()
->where('user_id', request()->get('record')))
->columns([
//
])
->filters([
//
])
->persistFiltersInSession()
->persistSortInSession()
->actions([
Tables\Actions\EditAction::make(),
Tables\Actions\DeleteAction::make(),
])
->bulkActions([
Tables\Actions\BulkActionGroup::make([
Tables\Actions\DeleteBulkAction::make(),
]),
]);
}
public static function table(Table $table): Table
{
return $table
->query(
Transaction::query()
->where('user_id', request()->get('record')))
->columns([
//
])
->filters([
//
])
->persistFiltersInSession()
->persistSortInSession()
->actions([
Tables\Actions\EditAction::make(),
Tables\Actions\DeleteAction::make(),
])
->bulkActions([
Tables\Actions\BulkActionGroup::make([
Tables\Actions\DeleteBulkAction::make(),
]),
]);
}
how to make the table not forget about request()->get('record') thanks
11 replies
FFilament
Created by omar abdou on 1/5/2025 in #❓┊help
How to set tags to a TagsInput using $set
No description
11 replies