First commit repo

This commit is contained in:
PovilasKorop
2021-11-22 07:06:44 +02:00
commit 0d55e7cfd3
84 changed files with 11268 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);
}
}