Initial project

This commit is contained in:
PovilasKorop
2021-11-29 12:26:54 +02:00
commit 7f7f66dfea
84 changed files with 11264 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function test_example()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}