File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
app/Filament/Resources/Replies/Tables Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public static function configure(Table $table): Table
3131
3232 TextColumn::make ('authorRelation.name ' )
3333 ->label ('' )
34- ->description (fn (Reply $ record ): ?string => $ record ->authorRelation ->username ),
34+ ->description (fn (Reply $ reply ): ?string => $ reply ->authorRelation ->username ),
3535
3636 TextColumn::make ('replyAbleRelation.subject ' )
3737 ->label ('Thread ' )
@@ -68,7 +68,7 @@ public static function configure(Table $table): Table
6868 ])
6969 ->recordActions ([
7070 Action::make ('view ' )
71- ->url (fn (Reply $ record ): string => route ('thread ' , $ record ->replyAble ()->slug ()) . '# ' . $ record ->id ())
71+ ->url (fn (Reply $ reply ): string => route ('thread ' , $ reply ->replyAble ()->slug ()) . '# ' . $ reply ->id ())
7272 ->openUrlInNewTab ()
7373 ->icon ('heroicon-s-eye ' ),
7474
You can’t perform that action at this time.
0 commit comments