@component('boilerplate::card', ['color' => 'pink', 'title' => 'Bootbox'])
bootbox.alert('Example')
bootbox.confirm("OK ?", function(result){ console.log('Result: ' + result); });
bootbox.prompt("Value", function(result){ console.log(result); });
bootbox.dialog({ message: '<h1>HTML message</h1><p>Hello there !</p>' });
@slot('footer')
@endslot
@endcomponent