-- Azan Shinwari Restaurant Menu Categories
-- warehouse_id = 1

INSERT INTO `restaurant_menu_categories` (`name`, `description`, `image`, `status`, `sort_order`, `warehouse_id`, `created_at`, `updated_at`) VALUES
('DRINK Bar', 'Cold drinks and beverages', NULL, 1, 1, 1, NOW(), NOW()),
('TEA Bar', 'Hot tea varieties and traditional beverages', NULL, 1, 2, 1, NOW(), NOW()),
('ICE CREAM Shakes', 'Ice cream shakes and smoothies', NULL, 1, 3, 1, NOW(), NOW()),
('ICE CREAM Scoops', 'Ice cream scoops and flavors', NULL, 1, 4, 1, NOW(), NOW()),
('MOCKTAIL', 'Non-alcoholic cocktails and beverages', NULL, 1, 5, 1, NOW(), NOW()),
('FRAPPE', 'Frappe and cold coffee drinks', NULL, 1, 6, 1, NOW(), NOW()),
('TANDOOR', 'Traditional tandoor breads and rotis', NULL, 1, 7, 1, NOW(), NOW()),
('SALAD Bar', 'Fresh salads and raita', NULL, 1, 8, 1, NOW(), NOW()),
('BAR B.Q', 'Grilled barbecue items', NULL, 1, 9, 1, NOW(), NOW()),
('STARTER', 'Appetizers and starters', NULL, 1, 10, 1, NOW(), NOW()),
('HANDI Special', 'Handi dishes and curries', NULL, 1, 11, 1, NOW(), NOW()),
('SHINWARI', 'Shinwari style dishes', NULL, 1, 12, 1, NOW(), NOW()),
('TAKA TAK', 'Taka tak and tawa dishes', NULL, 1, 13, 1, NOW(), NOW()),
('PIZZA', 'Pizza varieties', NULL, 1, 14, 1, NOW(), NOW()),
('SANDWICH', 'Sandwiches and paninis', NULL, 1, 15, 1, NOW(), NOW()),
('BURGER', 'Burgers and grilled sandwiches', NULL, 1, 16, 1, NOW(), NOW());

