Initial commit, using Laravel

This commit is contained in:
Gregorio Chiko Putra
2019-05-13 13:20:37 +07:00
commit d18cb0da59
88 changed files with 13379 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace Tests\Feature;
use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}