11 lines
179 B
PHP
11 lines
179 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
require_once realpath(dirname(__FILE__) . '/TestCase.php');
|
|
|
|
$count = DB::connection('mongo')->table('tblCard')
|
|
->count();
|
|
|
|
dd($count);
|