2026-08-13 07:17:37 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
test('app layouts always reserve space for the vertical scrollbar', function (string $layout) {
|
|
|
|
|
$contents = file_get_contents(dirname(__DIR__, 2).'/'.$layout);
|
|
|
|
|
|
|
|
|
|
expect($contents)->toMatch('/<body(?:\s+[^>]*)?class="[^"]*overflow-y-scroll[^"]*"[^>]*>/');
|
chore(v5): archive V5 implementation and remove runtime integration
Move V5 source, migrations, UI, scripts, and tests into documentation, then remove V5 routes, models, jobs, configuration, dependencies, and application hooks.
2026-08-15 17:13:30 +00:00
|
|
|
})->with(['resources/views/layouts/base.blade.php']);
|