palzin / beam
Beam is a friendly app designed to boost your Laravel PHP coding and debugging experience.
1.0
2025-03-16 10:01 UTC
Requires
- php: ^8.1
- illuminate/mail: ^10.0|^11.0|^12.0
- illuminate/support: ^10.0|^11.0|^12.0
- nunomaduro/termwind: ^1.15.1|^2.0.1
- palzin/beam-core: ^1.0
Requires (Dev)
- laravel/framework: ^10.0|^11.0|^12.0
- laravel/pint: ^1.17.2
- livewire/livewire: ^3.5.6
- mockery/mockery: ^1.6.12
- orchestra/testbench-core: ^8.0|^9.4|^10.0
- pestphp/pest: ^2.35.1|^3.7.0
- symfony/var-dumper: ^6.4.0|^7.1.3
README
Beam
Download the App
Available for Windows, Linux and macOS.👋 Hello Dev,
Beam is a friendly app that boosts your Laravel PHP coding and debugging experience.
When using Beam, you can see the result of your debug displayed in a standalone Desktop application.
These are some debug tools available for you:
- Dump single or multiple variables at once.
- Send
dump
,dd
to Beam app. - Watch Laravel Mail.
- See your dumped values in a Table, with a built-in search feature.
- Improve your debugging experience using different screens.
- Watch SQL Queries.
- Watch Slow Queries SQL Queries.
- Monitor Laravel Logs.
- Monitor Livewire component.
- Validate JSON strings.
- Verify if a string contains a substring.
- View
phpinfo()
configuration. - List your Laravel Routes.
- Inspect Model attributes.
- Learn more in our Reference Sheet.
- Multiple Themes (light, dark, dracula, dim, retro ...)
- Shortcuts (clear, always on top)
Get Started
Requirements
PHP 8.1+ and Laravel 10.0+
Using Laravel
composer require palzin/beam --dev
PHP Project
composer require palzin/beam-core --dev
See also: https://palzin.app/beam
-
Debug your code using
ds()
in the same way you would use Laravel's native functions dump() or dd(). -
Run your Laravel application and see the debug dump in the Beam App window.
Example
Here's an example:
// File: routes/web.php <?php Route::get('/', function () { ds('Home page accessed!'); return view('home'); });
The Desktop App receives:
// File: routes/web.php <?php Route::get('/', function () { \App\Models\User::all(); // duplicate query example \App\Models\User::all(); // duplicate query example \App\Models\Dish::all(); return ''; });
The Desktop App receives: