mirror of
https://github.com/filamentphp/filament.git
synced 2026-08-29 03:09:12 +08:00
c772c5819d
* fix: Search and sort on same relationship table
* Update InteractsWithTableQuery.php
* add test
* Update ColumnTest.php
* Update Group.php
* grouping tests
* clean up
* fix column qualification
* dont use joins for ordering anything
* test
* fix migrations order
* phpstan and summary issues
* update tests
* fix
* fix tests
* Update GroupingTest.php
* Revert "fix"
This reverts commit 160c3e0d18.
* Update TestsSummaries.php
* fix concurrency
* Update TestsSummaries.php
* Update 0009_modify_users_table.php
* BelongsToThrough support
* nested belongstothrough
* Update ColumnTest.php
* fix snapshots
* fix sorting based on sql
13 lines
348 B
PHP
13 lines
348 B
PHP
<?php
|
|
|
|
use Dotenv\Dotenv;
|
|
|
|
require_once __DIR__ . '/../vendor/autoload.php';
|
|
|
|
// Load .env.testing file if it exists
|
|
// Using safeLoad() to avoid overriding environment variables that are already set
|
|
if (file_exists(__DIR__ . '/../.env.testing')) {
|
|
$dotenv = Dotenv::createImmutable(__DIR__ . '/..', '.env.testing');
|
|
$dotenv->safeLoad();
|
|
}
|