Skip to content

Commit

Permalink
Add missing closing parenthesis to code example
Browse files Browse the repository at this point in the history
  • Loading branch information
intrepidws authored Oct 22, 2024
1 parent c56cda0 commit 3792684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/admin/docs/02-resources/07-relation-managers.md
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ use Filament\Tables\Actions\AttachAction;
use Illuminate\Database\Eloquent\Builder;

AttachAction::make()
->recordSelectOptionsQuery(fn (Builder $query) => $query->whereBelongsTo(auth()->user())
->recordSelectOptionsQuery(fn (Builder $query) => $query->whereBelongsTo(auth()->user()))
```

### Handling duplicates
Expand Down

0 comments on commit 3792684

Please sign in to comment.