Migrasi ke Laravel dan penambahan dokumentasi

This commit is contained in:
GuavaPopper
2026-05-02 14:03:04 +07:00
parent 7759b83638
commit 6f108afdba
83 changed files with 12004 additions and 3 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
namespace Tests\Feature;
// use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function test_the_application_returns_a_successful_response(): void
{
$response = $this->get('/');
$response->assertStatus(200);
}
}