<?php include 'header.php';?>
<div class="col-md-10 content">
<div class="row">
<div class="col-md-12 ">
<div class="panel panel-primary">
<div class="panel-heading">
<h3>Vendor List</h3>
</div>
<div class="panel-body">
<div class="col-md-12 ">
<div class="table-responsive">
<table id="example" class="table table-striped table-bordered dt-responsive nowrap" cellspacing="0" width="100%">
<thead>
<tr>
<th>SL No</th>
<th>Ticket</th>
<th>Ticket ID</th>
<th>Department</th>
<th>Created On</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>Hello</td>
<td>Demo</td>
<td>Demo</td>
<td>Demo</td>
<td>Demo</td>
<td>Demo</td>
</tr>
<tr>
<td>Demo</td>
<td>Demo</td>
<td>Demo</td>
<td>Demo</td>
<td>Demo</td>
<td>Demo</td>
</tr>
<tr>
<td>Demo</td>
<td>Demo</td>
<td>Demo</td>
<td>Demo</td>
<td>Demo</td>
<td>Demo</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include 'footer.php';?>
|