No worries. And thanks for the reply.
It started working now...
I had Laravel friendship trait added to 'PaymentTable.php', event though I later tried using Automaker class as instructed in the guide, but I hadn't removed the trait. I removed friendship trait to clean the code before sharing and it started working. So, seems like some conflict with friendship trait with something in Dashboard?
BTW it's showing the page, but it's not loading any JS or CSS file. I tried downloading the quick start zip and used it without any framework (just composer install), and it is same.
And here's the source:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="KoolReport.com">
<meta name="keywords" content="">
<title>Dashboard</title>
</head>
<body>
<div id="Main" class="app header-fixed sidebar-fixed">
<header class="app-header navbar">
<button class="navbar-toggler mobile-sidebar-toggler d-lg-none" type="button">
<span class="navbar-toggler-icon"></span>
</button>
<a onClick="loadDashboard('PaymentBoard')" href="javascript: void 0" class="navbar-brand text-center" style="color:#fff;background-image:none;padding-top:10px" href="#">
<strong>Dashboard</strong> </a>
<button class="navbar-toggler sidebar-toggler d-md-down-none" type="button">
<span class="navbar-toggler-icon"></span>
</button>
<ul class="nav navbar-nav d-md-down-none mr-auto">
</ul>
<ul class="nav navbar-nav ml-auto">
</ul>
</header> <div class="app-body">
<div class="sidebar">
<nav class="sidebar-nav">
<ul class="nav">
<li class="nav-item">
<a data-path="["Payments Board"]" class="nav-link" onClick="navMove(this)" href="javascript:void 0" data-name="PaymentBoard">
<i class="icon-doc"></i>Payments Board </a>
</li> </ul>
</nav>
<span class="sidebar-foot"></span>
</div> <main class="main">
<ol id="Main_Breadcrumb" class="breadcrumb"></ol>
<div class="container-fluid app-container pb-2">
<dashboard name="PaymentBoard">
<script type="text/javascript">
KoolReport.dashboard.dboard.start("PaymentBoard","Payments Board");
KoolReport.dashboard.dboard.setState({});
KoolReport.dashboard.headerTitle("Payments Board - Dashboard");
</script>