Initial commit

This commit is contained in:
2026-08-01 18:23:13 +02:00
commit 4b066076f2
74 changed files with 18880 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
use RefreshDatabase;
public function test_returns_a_successful_response()
{
$response = $this->get(route('home'));
$response->assertOk();
}
}