added initial entries model

This commit is contained in:
jon brookes 2026-01-02 13:58:06 +00:00
parent 11f1dc6895
commit a0a1c08ece
19 changed files with 487 additions and 6 deletions

View file

@ -6,5 +6,15 @@ use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
//
/**
* Creates the application.
*/
public function createApplication(): \Illuminate\Foundation\Application
{
$app = require __DIR__ . '/../bootstrap/app.php';
$app->make(\Illuminate\Contracts\Console\Kernel::class)->bootstrap();
return $app;
}
}