jmrufo
Importing excel
Hello colleagues.
I installed this package to import Excel into Filament and I'm encountering the following problem.
According to the documentation, you can include this method so the user can download a sample file:
->sampleFileExcel(
url: url('excel/users.xlsx'),
sampleButtonLabel: 'Download Sample',
customiseActionUsing: fn(Action $action) => $action->color('secondary')
->icon('heroicon-m-clipboard')
->requiresConfirmation(),
)
The problem is that when including this method, an error is generated indicating that it doesn't exist:
Method EightyNine\ExcelImport\ExcelImportAction::sampleFileExcel does not exist.
Is this a package error? Has anyone had this problem?
Regards.
4 replies
Problem editing filtered record
Hello
I have used the modifyQueryUsing() function on the table and the records it displays for each user are correct, however when editing a record the information it loads is still incorrect, that is, it always loads the information from the first record shown regardless of the one you select.
Example:
->modifyQueryUsing(function (Builder $query) {
if (Auth::user()->hasRole('panel_user')) {
return $query->where('modality', 'TF');
} elseif (Auth::user()->hasRole('panel_user_presencial')) {
return $query->where('modality', '=','P')->Orwhere('modality', '=', 'M')->Orwhere('modality', '=', 'AV');
}
})
I have observed that the id of the record that is loaded for editing is correct but the information is not.
What could be the cause of this?
Regards.
8 replies