Search code examples
laravel-nova

How can I change the placeholder of global search field in Laravel Nova


I want to change the placeholder of global search field in Laravel Nova from "Press / to search" to another text


Solution

  • Open the JSON file located

    ROOT_PROJECT/resources/lang/vendor/nova/YOUR_LANGUAGE.json // default en.json
    

    and edit in this way

    {
        // ... other strings
        "Press / to search": "YOUR CUSTOM PLACEHOLDER"
    }