14 lines
249 B
PHP
14 lines
249 B
PHP
<?php
|
|
|
|
namespace App\Traits;
|
|
|
|
trait Database
|
|
{
|
|
public function databaseDriverIs(string $driver): bool
|
|
{
|
|
$connection = config('database.default');
|
|
|
|
return config("database.connections.$connection.driver") === $driver;
|
|
}
|
|
}
|