When deleting a Laravel Nova resource, the message "Are you sure you want to delete the selected resources" is displayed in a confirmation modal. How can I override this for a specific resource?
How to override the delete confirmation modal in Laravel Nova
Asked Answered
Create a file en.json in the given path on root location.
lang/vendor/nova/en.json
override the constant value
"Are you sure you want to delete the selected resources?": "Some Custom Message",
Run following command to clear cache.
php artisan config:clear
php artisan cache:clear
Output:
© 2022 - 2024 — McMap. All rights reserved.