Skip to content

Commit

Permalink
Merge pull request filamentphp#14595 from intrepidws/patch-1
Browse files Browse the repository at this point in the history
Docs: Add missing closing parenthesis to code example
  • Loading branch information
danharrin authored Oct 23, 2024
2 parents c56cda0 + 3792684 commit f07ce50
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 f07ce50

Please sign in to comment.