FilamentF
Filament13mo ago
Daniel

How disable global scopes in RepeatableEntry

What I am trying to do: Show histories from warehouse transfer model without global scopes.

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()
   ])
image.png
image.png
image.png
image.png
Was this page helpful?