Need solution for outdated PDF URL

Hi guys, I have QuoteResource. After saving EditQuote I run queue job to generate pdf version of quote. Then I have download action button on ViewQuote. Problem is that the button has url of old pdf, that is being regenerated, so I need to refresh page after about 1 second to get new url. Do you have any suggestion? I am using Spatie Media Library to store pdf and Spatie PDF to generate it (probably unimportant).
Action::make('download')
->label('Download quote')
->url(function (Quote $record): string {
return $record->getFirstMediaUrl('quote');
})
->openUrlInNewTab();
Action::make('download')
->label('Download quote')
->url(function (Quote $record): string {
return $record->getFirstMediaUrl('quote');
})
->openUrlInNewTab();
0 Replies
No replies yetBe the first to reply to this messageJoin

Did you find this page helpful?