Soft-deleted relations
Found other posts before but no answers.
TextColumn::make('campaign.user.name')
What is the campaign is soft deleted?
modifyQueryUsing doesn't seem to do anything (checked with query debugger)
->modifyQueryUsing(function ($query) {
return $query->with(['campaign' => fn($query) => $query->withTrashed()]);
})
Solution:Jump to solution
Solved:
->modifyQueryUsing(function ($query) {
return $query->with(['campaign' => function ($query) {...
1 Reply
Solution
Solved:
->modifyQueryUsing(function ($query) {
return $query->with(['campaign' => function ($query) {
$query->withTrashed()->with(['user']);
}]);
})