This commit is contained in:
2021-03-03 09:49:59 +01:00
parent 66ac69fc2a
commit 6717cc4437
6 changed files with 1717 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
require "vendor/autoload.php";
use Illuminate\Database\Capsule\Manager as Capsule;
$capsule = new Capsule;
$capsule->addConnection([
"driver" => "mysql",
"host" =>"127.0.0.1",
"database" => "acl",
"username" => "root",
"password" => ""
]);
$capsule->setAsGlobal();
$capsule->bootEloquent();