🎉 install laravel framework.

This commit is contained in:
WispX
2021-12-10 09:11:15 +08:00
parent 82988ebe2e
commit 9800d5df07
5898 changed files with 10839 additions and 909744 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);
}
}