make(Illuminate\Contracts\Console\Kernel::class)->bootstrap(); echo 'Connected database driver: '.config('database.default').PHP_EOL; foreach (['users','pets','payments','products'] as $table) echo $table.': '.Illuminate\Support\Facades\DB::table($table)->count().PHP_EOL; echo 'Expiry column: '.(Illuminate\Support\Facades\Schema::hasColumn('users','premium_expires_at')?'present':'missing').PHP_EOL;