Set up a fresh Laravel app

This commit is contained in:
Bob Molitor
2025-10-16 14:22:46 +02:00
commit 81a98dd9f4
112 changed files with 17024 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace Tests\Unit;
use Illuminate\Foundation\Testing\RefreshDatabase;
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
use RefreshDatabase;
public function test_that_true_is_true(): void
{
$this->assertTrue(true);
}
}