© 2026 Hedgehog Software, LLC
class LatestCastings extends BaseWidget { protected static ?int $sort = 2; protected int|string|array $columnSpan = 'full'; public function table(Table $table): Table { return $table ->heading('Recent Castings') ->query( Casting::query()->where('user_id', auth()->id())->latest()->take(5) ) ->columns([ ....
Casting::query()->where('user_id', auth()->id())->latest()->take(5)