/
home
/
obinna
/
html
/
restaurants
/
templates
/
Inventory
/
Upload File
HOME
{% extends 'base1.html.twig' %} {% block content %} <div class="content"> <div class="row"> <div class="col-sm-6"> <div class="card"> <div class="card-header"><h3>{{ item.name }} Details</h3></div> <div class="card-body"> <table class="table table-striped"> <tr> <td scope="row">ID</td> <td>{{ item.id }}</td> </tr> <tr> <td scope="row">Name</td> <td>{{ item.name }}</td> </tr> <tr> <td scope="row">Price</td> <td>{{ item.sellingPrice }}</td> </tr> <tr> <td scope="row">Category</td> <td>{{ item.category.name }}</td> </tr> </table> </div> <a class="btn btn-danger action-icon" href="{{ path('removeitem', {'id': item.id }) }}"><i class="fa fa-trash"></i>Delete Item</a> </div> <br> <hr> </div> </div> <a class="btn btn-primary" href="{{ path('items') }}" style="margin-top: 10px;"> <i class="fa fa-arrow-left"></i> Back to Items </a> </div> {% endblock %}