Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display validation errors #28

Open
mariuscirstea opened this issue Mar 14, 2021 · 1 comment
Open

Display validation errors #28

mariuscirstea opened this issue Mar 14, 2021 · 1 comment

Comments

@mariuscirstea
Copy link

How can we display validation errors inside Nova?

@hanafiah
Copy link

hanafiah commented May 9, 2021

you can try..catch at handle() method
for example

public function handle(ActionFields $fields, Collection $models)
    {
        try {
            Excel::import(new TicketsImport, $fields->file);
            return Action::message('Tickets Succesfully Imported!');
        } catch (\Maatwebsite\Excel\Validators\ValidationException $e) {
            return Action::danger($e->errors());
        }
      
    }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants