base commit

This commit is contained in:
Mekan1206
2026-07-30 17:24:40 +05:00
commit a794dacd39
345 changed files with 29597 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<?php
declare(strict_types=1);
use App\Models\User;
it('redirects guests from the admin panel to login', function (): void {
$this->get('/admin')
->assertRedirect('/admin/login');
});
it('allows authenticated super admin users to access the admin panel', function (): void {
$admin = createAdminUser();
$this->actingAs($admin)
->get('/admin')
->assertSuccessful();
});
it('redirects authenticated non-admin users without panel access', function (): void {
seedRoles();
$user = User::factory()->create();
$this->actingAs($user)
->get('/admin')
->assertForbidden();
});