création du projet laravel et création de la base de donnée

This commit is contained in:
Luka COUTANT
2025-06-10 14:06:48 +02:00
parent bdcb23b753
commit e9e9bc2ae6
67 changed files with 13748 additions and 0 deletions

View File

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