Create Your Food
{{ newItem.name }}
${{ newItem.price.toFixed(2) }}
{{ newItem.ingredients }}
{{ newItem.description }}
Restaurant Statistics
Total Items
{{ menuItems.length }}
Food Items
{{ menuItems.filter(i => i.type === 'food').length }}
Drink Items
{{ menuItems.filter(i => i.type === 'drink').length }}
Categories
{{ categories.length }}
Average Price
${{ calculateAveragePrice() }}
Highest Rated
{{ getHighestRatedItem() }}
Top Rated Items
{{ item.name }}
{{ item.reviews.length }} reviews
Restaurant Areas
No areas yet. Click "Expand Restaurant" to create your first area!
{{ area.name }}
{{ area.description.substring(0, 100) }}{{ area.description.length > 100 ? '...' : '' }}
Restaurant Utilities
Default Utilities
{{ util.name }}
{{ util.description }}
Custom Utilities
No custom utilities yet. Click "Create New Utility" to create your first utility!
{{ util.name }}
{{ util.description }}