How to set up A/B tests in Laravel
Feb 07, 2024
A/B tests help you improve your Laravel app by enabling you to compare the impact of changes on key metrics. To show you how to set one up, we create a basic Laravel app, add PostHog, create an A/B test, and implement the code for it.
1. Create a basic Laravel app
First, ensure PHP and Composer are installed. Then, create a new Laravel project called laravel-ab-tests
:
composer create-project laravel/laravel laravel-ab-testscd laravel-ab-tests
Next, replace the code in resources/views/welcome.blade.php
with a simple heading and paragraph:
<!DOCTYPE html><html><body><h1>Laravel A/B testing tutorial</h1><p>{{ $paragraphText }}</p></body></html>
Replace the code in routes/web.php
with a route to return our view:
<?phpuse Illuminate\Support\Facades\Route;Route::get('/', function () {$paragraphText = 'Placeholder text';return view('welcome', ['paragraphText' => $paragraphText]);});
Run php artisan serve
and navigate to http://127.0.0.1:8000
to see our app in action.
2. Add PostHog to your app
With our app set up, it’s time to install and set up PostHog. If you don't have a PostHog instance, you can sign up for free.
To start, run composer require posthog/posthog-php
to install PostHog’s PHP SDK.
Next, we initialize PostHog in the boot
method of app/Providers/AppServiceProvider.php
. Replace the existing code in that file with the following:
<?phpnamespace App\Providers;use Illuminate\Support\ServiceProvider;use PostHog\PostHog;class AppServiceProvider extends ServiceProvider{public function boot(): void{PostHog::init('<ph_project_api_key>',['host' => 'https://us.i.posthog.com']);}}
You can find your project API key and instance address in your project settings.
Lastly, we capture a $pageview
event with PostHog in our route:
<?phpuse Illuminate\Support\Facades\Route;use PostHog\PostHog;Route::get('/', function () {$paragraphText = 'Placeholder text';$distinctId = 'placeholder-user-id';PostHog::capture(['distinctId' => $distinctId,'event' => '$pageview']);return view('welcome', ['paragraphText' => $paragraphText]);});
With this set up, restart your app and then refresh your browser a few times. You should now see the captured event in your PostHog activity tab.
3. Create an A/B test in PostHog
Next, go to the A/B testing tab and create an A/B test by clicking the New experiment button. Add the following details to your experiment:
- Name it "My cool experiment".
- Set "Feature flag key" to
my-cool-experiment
. - Under the experiment goal, select the
pageview
event we captured in the previous step. - Use the default values for all other fields.
Click "Save as draft" and then click "Launch".
4. Implement the A/B test code
To implement the A/B test, we:
- Fetch the
my-cool-experiment
flag usingPostHog::getFeatureFlag()
. - Update the paragraph text based on whether the user is in the
control
ortest
variant of the experiment.
// rest of your codeRoute::get('/', function () {$paragraphText = 'Placeholder text';$distinctId = 'placeholder-user-id';$enabledVariant = PostHog::getFeatureFlag('my-cool-experiment',$distinctId);if ($enabledVariant === "control") {$paragraphText = "Control variant!";} else if ($enabledVariant === "test") {$paragraphText = "Test variant!";}// rest of your code});
When you restart your app and refresh the page, you should see the text updated to either Control variant!
or Test variant!
.
💡 Setting the correct
distinctId
:You may notice that we set
distinctId = 'placeholder-user-id'
in our flag call above. In production apps, to ensure you fetch the correct flag value for your user,distinctId
should be set to their unique ID.For logged-in users, you typically use their email or user ID as their
distinctId
. For logged-out users, assuming they made their request from a browser, you can use values from their request cookies. See an example of this in our Nuxt feature flags tutorial.
5. Include the feature flag when capturing your event
To ensure our goal metric is correctly calculated for each experiment variant, we need to include our feature flag information when capturing our $pageview
event.
To do this, we add the $feature/my-cool-experiment
key to our event properties:
// rest of your codeRoute::get('/', function () {// rest of your codePostHog::capture(['distinctId' => $distinctId,'event' => '$pageview','properties' => ['$feature/my-cool-experiment' => $enabledVariant]]);return view('welcome', ['paragraphText' => $paragraphText]);});
Now PostHog is able to calculate our goal metric for our experiment results.
Further reading
- A software engineer's guide to A/B testing
- How to set up feature flags in Laravel
- How to set up analytics in Laravel