Example #1
0
<?php

include_once '../../_includes/framework.php';
require_admin();
$page_title = "Admin";
include "_partials/admin-header.php";
$vendors = Vendor::order_by_id();
?>

<div class="container">
  <div class="col-md-12">
    <h1>Vendors</h1>

    <table class="table">
      <tr>
        <th>ID</th>
        <th>Name</th>
        <th>Assigned Tables</th>
        <th>Actions</th>
      </tr>
      <?php 
foreach ($vendors as $vendor) {
    ?>
        <tr>
          <td><?php 
    echo $vendor->id;
    ?>
</td>
          <td><?php 
    echo $vendor->name;
    ?>