Kinetic: A view-composer package for Inertia.js
Kinetic adds view-composer-like features to the Inertia.js Laravel adapter. Like Laravel view composers, Kinetic can bind data each time a component is rendered from a single location. Within a service provider, you can call the composer() method to define Inertia composers:
Kinetic: A view-composer package for Intertia.js
Kinetic adds view-composer-like features to the Inertia.js Laravel adapter. Like Laravel view composers, Kinetic can bind data each time a component is rendered from a single location. Within a service provider, you can call the composer() method to define Inertia composers:
Laravel 9.14 Released | Laravel News
The Laravel team released 9.14 with migration table comments, a dynamic trashed factory state, a new array key helper, bootable/setup test traits, and more: Today's Laravel release supports adding comments to tables as well as a new built-in "trashed" factory state
Test form requests in Laravel with Request Factories by Worksome
A month or two ago, I was busy writing tests for a Laravel app. More specifically, I was testing a Laravel post request
How to Validate Your Laravel App’s Config
As your Laravel projects change and grow, it's likely that you'll add new config fields and onboard new team members to work alongside you. Especially for junior developers, setting up config and environment variables on your local development machine for
Laravel 9.13 Released | Laravel News
The Laravel team released 9.13 with a value() collection method, new test response helpers, an array map convenience method, and more: Release Notes You can see the complete list of new features and updates below and the diff between 9.12.0 and 9.13.0
Eloquent Performance: 4 Examples of N+1 Query Problems
Eloquent performance is typically the main reason for slow Laravel projects. A big part of that is a so-called "N+1 Query Problem". In this article, I will show a few different examples of what to watch out for, including the
Releasing Bouncer: Roles and Permissions for Laravel apps
After many years in development, 56 releases, 1.3 million downloads, and over 2,800 unsolicited stars, Bouncer has finally reached version 1.0. It has been extremely reliable and stable for quite a while now, and is being used in production by
Tinkerwell 3 – The PHP code runner is released
The team at Beyond Code released Tinkerwell 3 with intelligent code completion, magic comments and a stunning new design. Tinkerwell is the best code runner for Laravel and PHP – think php artisan tinker on steroids. You can run any PHP
A Simple Wallet Implementation for Laravel
Laravel Wallet by Stephen Jude is a simple wallet implementation for Laravel models: 1class User extends Authenticatable implements Wallet2{3 use HasWallet;4} Using the HasWallet trait, you can add deposits, make withdrawals, and check the balance of the wallet for