Hoan thien core finance v2

This commit is contained in:
2026-04-25 04:04:14 +00:00
parent 86216ef872
commit 002c9a8b99
39 changed files with 1308 additions and 89 deletions

View File

@@ -0,0 +1,13 @@
<?php
use App\Filament\Resources\Contracts\ContractResource;
use App\Models\User;
it('can render contracts index without error', function () {
$this->actingAs(User::factory()->create());
$response = $this->get(ContractResource::getUrl('index'));
// Chỉ kiểm tra không bị 500 error
$response->assertStatus(200);
});