Marko Dupor

Results 12 issues of Marko Dupor

To use this field within a BelongsToMany relation, I have made a simple solution by implementing ``withinRelation()`` method. ```php BelongsToMany::make('Some model') ->fields(function ($request, $relatedModel) { InlineText::make('Pivot attribute')->withinRelation(SomeModelPivot::class), }), ```

Hello, I would like to use the inline field within a relation. Was someone successful in making it work? I am trying to implement it myself, but have issues at...