How disable global scopes in RepeatableEntry
What I am trying to do: Show histories from warehouse transfer model without global scopes.
code:
code:




RepeatableEntry::make('warehouses')
->label(__('Registers'))
->schema([
TextEntry::make('product.name')
->label(__('Name')),
TextEntry::make('pivot.quantity')
->label(__('Quantity'))
->translateLabel(), TextEntry::make('batch_number')
->translateLabel()
])