// server.js const express = require('express'); const bodyParser = require('body-parser'); const app = express(); const PORT = process.env.PORT || 5000; // Middleware app.use(bodyParser.json()); // Routes app.get('/api/restaurants', (req, res) => { // Logic to fetch list of restaurants from database res.json(restaurants); }); app.post('/api/orders', (req, res) => { const { customerId, items } = req.body; // Logic to process order and save it to database res.json({ success: true, message: 'Order placed successfully' }); }); // Start server app.listen(PORT, () => { console.log(`Server is running on port ${PORT}`); });
top of page

CATERING
 
Full Tray of Fajitas $100.00
 (Chicken or Steak - made w/ onions, tomatoes and
bell peppers served w/ flour and corn tortillas) Serves 30-35
 
Full Tray of Enchiladas $100.00
(Chicken, Ground Beef or Cheese) Serves 30-35
 
Full Tray of Quesadillas $100.00
(Double Layered) Serves 30-35
 
Rice and Beans $50.00
(1/2 Tray of Each = One Full Tray) Serves 30-35
 
Half Tray of Guacamole $50.00
(W/ Chips) Serves 30-35
 
Full Tray of Chips and Salsa $50.00
Serves 30-35

EXTRAS 
Quesadillas $1.59
Cheese $0.50
Sour Cream $0.50
Avocado $1.00
Rice $2.59
Beans $2.59

Papi's Tacos

Family Owned and Operated since 1985

bottom of page