Initial Laravel 12 starter kit

This commit is contained in:
zino
2025-11-16 00:01:06 +01:00
parent 98c77c7df6
commit 7fa25fc80c
63 changed files with 15204 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
<?php
it('returns a successful response', function () {
$response = $this->get('/');
$response->assertStatus(200);
});