© 2026 Hedgehog Software, LLC
... public static function form(Form $form): Form { return $form ->schema([ Forms\Components\Select::make('author_id') ->relationship('author', 'name') ...
... public function author(): BelongsTo { return $this ->belongsTo(User::class, 'author_id'); } ...
SELECT "users"."name", "users"."id" FROM "users" ORDER BY "users"."name" ASC