Beartropy Logo

Beartropy Blog

Tutorials, tips, and news about the Beartropy ecosystem. Learn best practices and stay up to date.

Guides hace 7 horas

Bootstrapping Your TALL Stack App with the Beartropy Starter Kit

Stop configuring and start coding. Discover the opinionated reference architecture designed for modern Laravel 12 and Livewire 3 applications.

Beartropy Team 3 min read
#laravel #starter-kit #beartropy
Tips hace 17 horas

Stop Using array_filter: Meet PHP's Native array_find()

Discover array_find(), the PHP 8.4 function that finally kills the clumsy 'array_filter' pattern for finding single items.

Beartropy Team 2 min read
#php #php-8-4 #clean-code
Guides hace 1 día

Mastering Themes in Beartropy UI: Custom Presets & Global Defaults

A complete guide to Beartropy UI theming: publishing assets, creating Banking & SysAdmin presets, using magic props, and configuring global defaults.

Beartropy Team 4 min read
#laravel #beartropy #ui
Guides hace 1 día

Why Beartropy? Building Consistent Corporate Applications

Discover how Beartropy solves the corporate development challenge of building multiple consistent applications while respecting brand guidelines and keeping adoption simple.

Beartropy Team 4 min read
Guides hace 1 día

Stop Hardcoding: Manage Dynamic Configuration with Beartropy Settings

Move your configuration from static files to the database. Learn how Beartropy Settings handles type casting and caching for dynamic app preferences.

Beartropy Team 2 min read
#laravel #beartropy #settings
Guides hace 1 día

Mastering Custom Sort and Search Logic in Beartropy Tables

When standard database columns aren't enough, learn how to use closures to define complex sorting and searching logic for computed columns.

Beartropy Team 2 min read
#laravel #beartropy #tables
Tips hace 1 día

Streamline Form Validation with Beartropy UI Inputs

Stop writing repetitive validation logic. Learn how Beartropy UI inputs automatically handle error states and messages for you.

Beartropy Team 1 min read
#laravel #beartropy #forms
Tips hace 1 día

Protect Critical Data with Livewire's Locked Attribute

Learn how to prevent malicious users from tampering with your component state using the Locked attribute in Livewire.

Beartropy Team 2 min read
#livewire #security #attributes
Tips hace 1 día

Clean Up Your Try-Catch Blocks with the Rescue Helper

Discover how to replace verbose try-catch blocks with Laravel's elegant `rescue()` helper function to keep your code clean and readable.

Beartropy Team 2 min read
#laravel #clean-code #refactoring