Laravel Blade with JavaScript Superpowers! 🚀
Effortless page specific JavaScript modules in Laravel/Livewire apps
Bundle is in open beta! 👀
We need your help get this package production ready! Check out the discussion board or report a bug. We appreciate your feedback!
Quickstart
composer require leuverink/bundle
php artisan bundle:install
This is all you need to start using Bundle!
Basic usage
You may import any node_module
or local module from your resources/js
directory directly on the page.
<x-import module="apexcharts" as="ApexCharts" />
<script type="module">
const ApexCharts = await _import("ApexCharts");
// Create something amazing!
</script>