Код: Выделить всё
use MongoDB\Client as MongoClient;
$databaseName = 'little_buds';
$collectionName = 'test';
$client = new MongoClient(); // Connect to MongoDB server
$database = $client->$databaseName; // Dynamically create a database
$database->$collectionName->insertOne(array('key' => 'value')); // Insert a document into the collection
PS- Я использую Laravel 9.
Подробнее здесь: https://stackoverflow.com/questions/786 ... odb-client