This is a sample post. The code below is highlighted server-side — zero JavaScript involved.

A code example

<?php

Route::get('/', HomeController::class)->name('home');

// Early returns beat nested ifs
if (! $entry) {
    abort(404);
}

That is all. See you in the next posts.