The Laravel A/B Test package helps you quickly set up A/B tests and feature flags in a Laravel app. The package uses the self-hosted ABRouter service (which also has paid hosted options) to power the A/B and feature flag settings.Here's an example controller using this package to A/B test UI features, in this case, a button...
17 August, 2022
Encrypt and Decrypt Eloquent Model Fields in Laravel Apps
Programing Coderfunda
August 17, 2022
Laravel, Packages
No comments
Laravel Ciphersweet is a package by Spatie to integrate searchable field-level encryption in Laravel applications. The package's readme explains the problem Ciphersweet can help solve as follows: " "" "> " "";">In your project, you might store sensitive personal data in your database....
Fast Paginate for Laravel
Programing Coderfunda
August 17, 2022
Laravel, Packages
No comments
Laravel Fast Paginate is a fast implementation of offset/limit pagination for Laravel by Aaron Francis:Using Fast Paginate, you can use the same pagination API available in Laravel via the fastPaginate() method:1// Traditional built-in pagination2Model::query()->paginate()3 4// Fast paginate has the same...