18 lines
358 B
PHP
18 lines
358 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class IndexController extends Controller
|
|
{
|
|
//
|
|
public function index(){
|
|
// $data = DB::table('t_mint')->get()->toArray();
|
|
// dump($data);
|
|
// echo uniqid().md5(strtotime(now('')));
|
|
echo env('WEB3_SERVE_URL');
|
|
}
|
|
}
|