Skip to content

A Laravel Nova asset for Modal responses on an action.

Notifications You must be signed in to change notification settings

Kaylakaze/nova-modal-response

 
 

Repository files navigation

Nova Modal Response

This package aims to make it easier to respond with a custom modal when executing an action in Laravel Nova.

More info for this specific feature can be found in the Nova Documentation.

This is a fork of https://github.com/markwalet/nova-modal-response. The initial purpose of the fork was to add the ability to specify the size of the modal.

Installation

composer require markwalet/nova-modal-response

Usage

return Action::modal('modal-response', [
    'title' => 'Result in a model',
    'body' => 'This is way better than that small notification in the bottom right!',
]);

When you want to render raw html, you can use the html parameter instead:

return Action::modal('modal-response', [
    'title' => 'Next steps',
    'html' => '<ul><li>Show this package to your friends</li><li>Contribute</li><li>???</li><li>Profit!</li></ul>',
]);

There is also a special mode for rendering code snippets. This will surround the body with a <pre> and <code> tag but still leave escaping enabled:

return Action::modal('modal-response', [
    'title' => 'The JSON response we got back from the external API',
    'code' => json_encode($response->json(), JSON_PRETTY_PRINT),
]);

Specify the size of the modal using

'size' => "7xl" //or whatever size you need

About

A Laravel Nova asset for Modal responses on an action.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Vue 53.9%
  • JavaScript 26.5%
  • PHP 19.6%