you can use the account column in any table by using this code
public static function table(Table $table): Table { return $table ->columns([ AccountColumn::make('account.id'), ]); }
just pass the account id to the column
Last updated 3 months ago