Created
August 24, 2026 06:12
-
-
Save manchumahara/4c17d0f104f9da6dfec2fb9fc5e7194c to your computer and use it in GitHub Desktop.
Rest. Recommended Cuisine Types
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $cuisine_types = [ | |
| 'asian' => 'Asian', | |
| 'bangladeshi' => 'Bangladeshi', | |
| 'chinese' => 'Chinese', | |
| 'indian' => 'Indian', | |
| 'japanese' => 'Japanese', | |
| 'korean' => 'Korean', | |
| 'thai' => 'Thai', | |
| 'vietnamese' => 'Vietnamese', | |
| 'malaysian' => 'Malaysian', | |
| 'indonesian' => 'Indonesian', | |
| 'pakistani' => 'Pakistani', | |
| 'middle-eastern' => 'Middle Eastern', | |
| 'turkish' => 'Turkish', | |
| 'persian' => 'Persian', | |
| 'mediterranean' => 'Mediterranean', | |
| 'italian' => 'Italian', | |
| 'french' => 'French', | |
| 'spanish' => 'Spanish', | |
| 'mexican' => 'Mexican', | |
| 'american' => 'American', | |
| 'british' => 'British', | |
| 'greek' => 'Greek', | |
| 'european' => 'European', | |
| 'african' => 'African', | |
| 'caribbean' => 'Caribbean', | |
| 'latin-american' => 'Latin American', | |
| 'seafood' => 'Seafood', | |
| 'bbq-grill' => 'BBQ & Grill', | |
| 'steakhouse' => 'Steakhouse', | |
| 'fast-food' => 'Fast Food', | |
| 'bakery-pastry' => 'Bakery & Pastry', | |
| 'cafe' => 'Cafe', | |
| 'dessert-sweets' => 'Dessert & Sweets', | |
| 'vegetarian' => 'Vegetarian', | |
| 'vegan' => 'Vegan', | |
| 'fusion' => 'Fusion', | |
| 'multi-cuisine' => 'Multi-Cuisine', | |
| 'other-unspecified' => 'Other / Unspecified', | |
| ]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment