Daniel Reales
Daniel Reales
FFilament
Created by Daniel Reales on 3/28/2025 in #❓┊help
Set custom data on RepeatableEntry
I have this: array:137 [▼ // app/Filament/Admin/Resources/ExecutionResource.php:123 0 => array:3 [▼ "title" => "Zukünftige Regierung plant Elektroauto-Förderung" "description" => " Der Preisabstand zwischen neuen E-Autos und Verbrennern sinkt. Jetzt hat die zukünftige Bundesregierung eine E-Auto-Förderung angekündigt. Auch aus anderen Grün ▶ " "notified" => true ] 1 => array:3 [▶]
13 replies
FFilament
Created by Daniel Reales on 3/28/2025 in #❓┊help
Set custom data on RepeatableEntry
no. this is a function:
public function getProcessedNews(): array
{
return $this->notifiedPapers
->flatMap(function ($notifiedPaper) {
return $notifiedPaper->processedPapers
->map(fn ($processedPaper) => [
'title' => (string) $processedPaper->paper_title,
'description' => (string) $processedPaper->paper_description,
'notified' => true,
]);
})
->merge(
$this->processedPapers()
->whereNotIn('paper_uid', $this->notifiedPapers->pluck('paper_uid'))
->get()
->map(fn ($processedPaper) => [
'title' => (string) $processedPaper->paper_title,
'description' => (string) $processedPaper->paper_description,
'notified' => false,
])
)
->sortByDesc('notified')
->values()
->toArray();
}
public function getProcessedNews(): array
{
return $this->notifiedPapers
->flatMap(function ($notifiedPaper) {
return $notifiedPaper->processedPapers
->map(fn ($processedPaper) => [
'title' => (string) $processedPaper->paper_title,
'description' => (string) $processedPaper->paper_description,
'notified' => true,
]);
})
->merge(
$this->processedPapers()
->whereNotIn('paper_uid', $this->notifiedPapers->pluck('paper_uid'))
->get()
->map(fn ($processedPaper) => [
'title' => (string) $processedPaper->paper_title,
'description' => (string) $processedPaper->paper_description,
'notified' => false,
])
)
->sortByDesc('notified')
->values()
->toArray();
}
13 replies
FFilament
Created by Cosme fulanito on 4/24/2024 in #❓┊help
Does RepeatableEntry support arrays or only models?
Same here!
6 replies
FFilament
Created by Daniel Reales on 3/28/2025 in #❓┊help
Set custom data on RepeatableEntry
The thing is, I don't really have a relationship (I guess that's why it doesn't work), I have a custom array of elements that I get from a relationship.
13 replies
FFilament
Created by Daniel Reales on 3/28/2025 in #❓┊help
Set custom data on RepeatableEntry
It's a ViewAction:
Tables\Actions\ViewAction::make('generateNewsProd')
->hidden(fn(Model $record) => !$record->notifiedPapers)
->label('Generar Noticias')
->modalAutofocus(false)
->infolist([
RepeatableEntry::make('papers')
->label('Noticias Procesadas')
->state(fn (Model $record) =>
collect($record->getProcessedNews())->map(function ($item) {
return [
'title' => $item['title'],
'description' => $item['description'],
'notified' => $item['notified']
];
})->toArray()
)
->schema([
TextEntry::make('title')->label('Titulo'),
TextEntry::make('description')->label('Resumen'),
TextEntry::make('notified')->label('Notificado'),
// TextEntry::make('additional_data')->label('Datos Adicionales'), // Campo adicional
Actions::make([
Action::make('generateNews')
->label('Generar Noticia')
->action(fn(array $data) => dd($data)) // Procesar la noticia
->icon('heroicon-o-document-text')
])
])
])
Tables\Actions\ViewAction::make('generateNewsProd')
->hidden(fn(Model $record) => !$record->notifiedPapers)
->label('Generar Noticias')
->modalAutofocus(false)
->infolist([
RepeatableEntry::make('papers')
->label('Noticias Procesadas')
->state(fn (Model $record) =>
collect($record->getProcessedNews())->map(function ($item) {
return [
'title' => $item['title'],
'description' => $item['description'],
'notified' => $item['notified']
];
})->toArray()
)
->schema([
TextEntry::make('title')->label('Titulo'),
TextEntry::make('description')->label('Resumen'),
TextEntry::make('notified')->label('Notificado'),
// TextEntry::make('additional_data')->label('Datos Adicionales'), // Campo adicional
Actions::make([
Action::make('generateNews')
->label('Generar Noticia')
->action(fn(array $data) => dd($data)) // Procesar la noticia
->icon('heroicon-o-document-text')
])
])
])
13 replies
FFilament
Created by Daniel Reales on 3/28/2025 in #❓┊help
Set custom data on RepeatableEntry
No description
13 replies
FFilament
Created by Daniel Reales on 3/28/2025 in #❓┊help
Set custom data on RepeatableEntry
I mean that in the view it shows me N elements (that really exist) but it does not set the values.
13 replies
FFilament
Created by jilexandr on 8/26/2023 in #❓┊help
How to set custom data to RepeatableEntry inside infolist?
Were you able to solve it?
3 replies
FFilament
Created by Daniel Reales on 3/7/2025 in #❓┊help
Textinput validate convert int to string
What I don't understand is why $this->form->getState() validates the form and doesn't convert it to a string but $this->validate validates and converts it to a string.
5 replies
FFilament
Created by Daniel Reales on 3/6/2025 in #❓┊help
ToggleButton state return string
Perfect, thank you very much!
12 replies
FFilament
Created by Daniel Reales on 3/6/2025 in #❓┊help
ToggleButton state return string
I have an API whose validation is ['required', 'boolean'], or ['boolean']. If I leave it as a checkbox and it is not checked it is null, but it is actually required as false🥲
12 replies
FFilament
Created by Daniel Reales on 3/6/2025 in #❓┊help
ToggleButton state return string
Good to know. Thanks for your advice. It really makes sense to use a ToggleButtons default to null and 0 , 1 for boolean
12 replies
FFilament
Created by Daniel Reales on 3/6/2025 in #❓┊help
ToggleButton state return string
If I need to store null, true or false what would be the best option?
12 replies
FFilament
Created by mohdaftab on 11/25/2024 in #❓┊help
Fileupload multiple image in a tab not displaying images properly
34 replies
FFilament
Created by mohdaftab on 11/25/2024 in #❓┊help
Fileupload multiple image in a tab not displaying images properly
If I remove ->panelLayout('grid') it's works. But it's not right if we have a hundred photos.
34 replies
FFilament
Created by mohdaftab on 11/25/2024 in #❓┊help
Fileupload multiple image in a tab not displaying images properly
Have you been able to solve this? I've been having the exact same problem for a while now and I can't seem to fix it. https://github.com/filamentphp/filament/issues/15394
34 replies
FFilament
Created by Daniel Reales on 2/8/2025 in #❓┊help
Livewire component inside Tab not save changes
I add ->lazy() and it's works!
3 replies
FFilament
Created by Daniel Reales on 1/27/2025 in #❓┊help
How can you remove a single filter from a multiple select?
No description
5 replies
FFilament
Created by Daniel Reales on 1/27/2025 in #❓┊help
How can you remove a single filter from a multiple select?
Yes, this is my filter:
5 replies
FFilament
Created by Daniel Reales on 1/21/2025 in #❓┊help
Spatie Media Library not show images correctly in grid
No description
7 replies