CSS/JS updates, initial page rendering

This commit is contained in:
Deon George
2020-08-22 22:26:06 +10:00
parent 4c90ce11f2
commit f8717480fd
14 changed files with 164 additions and 60278 deletions

View File

@@ -4,9 +4,15 @@ namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Leenooks\LDAP;
class HomeController extends Controller
{
public function home() {
return view('home');
}
public function home() {
$o = new LDAP\Server;
return view('home')
->with('server',config('ldap.connections.default.name')) // @todo This connection name should be a config item
->with('bases',$o->getBaseDN());
}
}