Fix notification message for successful import by adding a period at the end

This commit is contained in:
dhanabalan
2025-11-08 16:03:32 +05:30
parent 7830631cdc
commit b25b42083f

View File

@@ -482,7 +482,7 @@ class InvoiceOutValidationResource extends Resource
} else {
Notification::make()
->title('Import Success')
->body("Successfully imported '{$successCount}' records")
->body("Successfully imported '{$successCount}' records.")
->success()
->send();
}