Corporate Office - 7711 New Market, Karol Bagh, New Delhi- 110005..... Branch Office- 505, DLF Phase 4, (Behind Supermart 2) - 122001
Located in Karol Bagh, Salt & Pepper Hospitality is a catering service that began in 2007. They provide a complete hospitality solution, by setting new benchmarks through an effective yet efficient catering with each event. The success of the company lies in preparing delicious food items and combining them with the discipline and passion for preparing food. The company makes sure that you are getting the best quality food at the best price. They don't compromise on the taste which ultimately determines customer satisfaction.
Services Offered
The team of Salt & Pepper Hospitality has a polite and experienced service staff providing every basic requirement like crockery, cutlery, glassware, non-alcoholic beverages, mineral water bottles, cubed ice, and basic lighting setup and tools for the presentation of the food. The company is set to provide you with customised menus with authentic flavours along with bartending services, decor services and wedding planning services.
Salt & Pepper Hospitality offers you with both vegetarian and non-vegetarian menus, including Jain menu as well. Their service covers multiple ranges of cuisine from traditional to fusion. Their team is dedicated to providing a delightful service and hearty food for any wedding-related event like a cocktail party or a grand wedding fiesta. They aim to deliver maximum customer satisfaction with their amazing and quality services.
1,500
Delhi
420
15
Yes
Year of Establishment
Events Done by Us
Team Members
Year of Experience
Countries Visited
Food is our passion, and it shows. We use only the freshest ingredients, in the dishes we prepare, including cuisine from all around the world such as Italian food, Mexican food, Asian food, Greek food, classic American dishes, and more. Our extensive menu will have something for everyone – even the pickiest eaters, while also pleasing the most discerning palettes. Our catering services are perfect for weddings, private parties, corporate events,
Indian, Asian, Continental, Mexican, North Indian , South Indian, Chinese, Japanese, Italian, Greek, Lebanese, Thai, Desserts, Bengali, Gujarati , Rajasthani, Goan, Maharashtrian
Whether you are looking for a hot meal, boxed lunches, bbq or anything in between, we can meet your needs. corporate accounts are welcome. We do breakfast, lunch, brunch, board meetings, afternoon socials, company picnics, appreciation luncheons & dinners, retirement parties, grand openings, and much more!
Your wedding reception is an expression of a cherished dream, a reflection of your individuality… a celebration of a new beginning. It would be an honor for the company to represent you and serve your family and friends on such an important day in your lives.
Every good meal should come paired with a delicious beverage. Catering Made Simple offers full beverage service including bar catering along with our delicious food options. Our experienced bartenders can handle everything from exquisite wine pairings to fancy cocktail parties.
We can assist clients who are time short, due to demanding work schedules or busy family lives and also those who are trying to juggle both.
We offer a range of services available for you to select from according to your own needs and requirements. We also offer bespoke services tailored to your specific desires.
We are professionally trained with a recognised qualification of Wedding and Event planning. All business conducted with our clients is dealt with in a confidential manner.
We all want a perfect day but it takes time, effort and often even a few tears. However it doesn’t have to be that way. Smile, relax and enjoy your wedding free of stress while we seamlessly manage your event f
Recommended by 0% of couples
CALL US: 76-66-77-88-99
Write Email:
Luxurymywedding@gmail.com
Message on WhatsApp or call our wedding experts to plan your Dream Wedding NOW!
{ return \in_array($this->statusCode, array(204, 304)); } /** * Cleans or flushes output buffers up to target level. * * Resulting level can be greater than target level if a non-removable buffer has been encountered. * * @final */ public static function closeOutputBuffers(int $targetLevel, bool $flush) { $status = ob_get_status(true); $level = \count($status); $flags = PHP_OUTPUT_HANDLER_REMOVABLE | ($flush ? PHP_OUTPUT_HANDLER_FLUSHABLE : PHP_OUTPUT_HANDLER_CLEANABLE); while ($level-- > $targetLevel && ($s = $status[$level]) && (!isset($s['del']) ? !isset($s['flags']) || ($s['flags'] & $flags) === $flags : $s['del'])) { if ($flush) { ob_end_flush(); } else { ob_end_clean(); } } } /** * Checks if we need to remove Cache-Control for SSL encrypted downloads when using IE < 9. * * @see http://support.microsoft.com/kb/323308 * * @final */ protected function ensureIEOverSSLCompatibility(Request $request) { if (false !== stripos($this->headers->get('Content-Disposition'), 'attachment') && 1 == preg_match('/MSIE (.*?);/i', $request->server->get('HTTP_USER_AGENT'), $match) && true === $request->isSecure()) { if ((int) preg_replace('/(MSIE )(.*?);/', '$2', $match[0]) < 9) { $this->headers->remove('Cache-Control'); } }
"ob_end_flush(): failed to send buffer of zlib output compression (1)"
{ return \in_array($this->statusCode, array(204, 304)); } /** * Cleans or flushes output buffers up to target level. * * Resulting level can be greater than target level if a non-removable buffer has been encountered. * * @final */ public static function closeOutputBuffers(int $targetLevel, bool $flush) { $status = ob_get_status(true); $level = \count($status); $flags = PHP_OUTPUT_HANDLER_REMOVABLE | ($flush ? PHP_OUTPUT_HANDLER_FLUSHABLE : PHP_OUTPUT_HANDLER_CLEANABLE); while ($level-- > $targetLevel && ($s = $status[$level]) && (!isset($s['del']) ? !isset($s['flags']) || ($s['flags'] & $flags) === $flags : $s['del'])) { if ($flush) { ob_end_flush(); } else { ob_end_clean(); } } } /** * Checks if we need to remove Cache-Control for SSL encrypted downloads when using IE < 9. * * @see http://support.microsoft.com/kb/323308 * * @final */ protected function ensureIEOverSSLCompatibility(Request $request) { if (false !== stripos($this->headers->get('Content-Disposition'), 'attachment') && 1 == preg_match('/MSIE (.*?);/i', $request->server->get('HTTP_USER_AGENT'), $match) && true === $request->isSecure()) { if ((int) preg_replace('/(MSIE )(.*?);/', '$2', $match[0]) < 9) { $this->headers->remove('Cache-Control'); } }
{ echo $this->content; return $this; } /** * Sends HTTP headers and content. * * @return $this */ public function send() { $this->sendHeaders(); $this->sendContent(); if (\function_exists('fastcgi_finish_request')) { fastcgi_finish_request(); } elseif (!\in_array(\PHP_SAPI, array('cli', 'phpdbg'), true)) { static::closeOutputBuffers(0, true); } return $this; } /** * Sets the response content. * * Valid types are strings, numbers, null, and objects that implement a __toString() method. * * @param mixed $content Content that can be cast to string * * @return $this * * @throws \UnexpectedValueException */ public function setContent($content) { if (null !== $content && !\is_string($content) && !is_numeric($content) && !\is_callable(array($content, '__toString'))) { throw new \UnexpectedValueException(sprintf('The Response content must be a string or object implementing __toString(), "%s" given.', \gettype($content)));
0
true
/* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); $response = $kernel->handle( $request = Illuminate\Http\Request::capture() ); $response->send(); $kernel->terminate($request, $response);
Key | Value |
laravel_session | "eyJpdiI6IkJ0anA1R1wvXC9JZE5hSVBIQmkzTVFydz09IiwidmFsdWUiOiJLXC9zSnRicDhHdXdyeFpsT0NFdlg5VFV0T2VZNHZXWFBLb0RsMVhsQkQ1QnFFR1Bxb1lkeFQrTGdiQkt5aG1HVyIsIm1hYyI6IjA0NmE4NWNhMDU0MDMxM2U3NjI4ZGQ3YzU2NWYwMzhlOTQ4MTU2MDZhZGQ2MWIzNGUyZGVhZTBkOWNmMTQ0YjAifQ=="
|
XSRF-TOKEN | "eyJpdiI6IlcxMXlYcDhyeXJvK0VaQ1wvclJqMkFRPT0iLCJ2YWx1ZSI6Ik5raUhTcjNoWVwvU1BpbWU4c3lMYW5QK0cyQTNnUGIyazBnVmdSd2dSREl1N01TTzBRaGZWM2NUa3FmOThOaFwvcCIsIm1hYyI6IjhhZTgzYjJjN2JhNzZhOTg2MDc1ZDdhYmM1NWJhNjRmYjU5ODM2NWYxMjZiNTM5NzY1ZDUyNGM2ZWRjMDQ2OTYifQ=="
|
Key | Value |
LSPHP_ProcessGroup | "on"
|
PATH | "/usr/local/bin:/bin:/usr/bin"
|
HTTP_ACCEPT | "*/*"
|
HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate"
|
HTTP_COOKIE | "laravel_session=eyJpdiI6IkJ0anA1R1wvXC9JZE5hSVBIQmkzTVFydz09IiwidmFsdWUiOiJLXC9zSnRicDhHdXdyeFpsT0NFdlg5VFV0T2VZNHZXWFBLb0RsMVhsQkQ1QnFFR1Bxb1lkeFQrTGdiQkt5aG1HVyIsIm1hYyI6IjA0NmE4NWNhMDU0MDMxM2U3NjI4ZGQ3YzU2NWYwMzhlOTQ4MTU2MDZhZGQ2MWIzNGUyZGVhZTBkOWNmMTQ0YjAifQ%3D%3D; XSRF-TOKEN=eyJpdiI6IlcxMXlYcDhyeXJvK0VaQ1wvclJqMkFRPT0iLCJ2YWx1ZSI6Ik5raUhTcjNoWVwvU1BpbWU4c3lMYW5QK0cyQTNnUGIyazBnVmdSd2dSREl1N01TTzBRaGZWM2NUa3FmOThOaFwvcCIsIm1hYyI6IjhhZTgzYjJjN2JhNzZhOTg2MDc1ZDdhYmM1NWJhNjRmYjU5ODM2NWYxMjZiNTM5NzY1ZDUyNGM2ZWRjMDQ2OTYifQ%3D%3D"
|
HTTP_HOST | "luxurymywedding.com"
|
HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
DOCUMENT_ROOT | "/home/u544263832/domains/luxurymywedding.com/public_html"
|
REMOTE_ADDR | "3.141.85.245"
|
REMOTE_PORT | "19086"
|
SERVER_ADDR | "191.101.12.11"
|
SERVER_NAME | "luxurymywedding.com"
|
SERVER_ADMIN | "" |
SERVER_PORT | "443"
|
REQUEST_SCHEME | "https"
|
REQUEST_URI | "/fnb_caterer/salt-and-pepper"
|
REDIRECT_URL | "/public/fnb_caterer/salt-and-pepper"
|
REDIRECT_REQUEST_METHOD | "GET"
|
HTTPS | "on"
|
CRAWLER_USLEEP | "1000"
|
CRAWLER_LOAD_LIMIT_ENFORCE | "25"
|
H_PLATFORM | "Hostinger"
|
H_TYPE | "business"
|
H_CANARY | "false"
|
H_STAGING | "false"
|
REDIRECT_STATUS | "200"
|
X_SPDY | "HTTP2"
|
SSL_PROTOCOL | "TLSv1.3"
|
SSL_CIPHER | "TLS_AES_256_GCM_SHA384"
|
SSL_CIPHER_USEKEYSIZE | "256"
|
SSL_CIPHER_ALGKEYSIZE | "256"
|
SCRIPT_FILENAME | "/home/u544263832/domains/luxurymywedding.com/public_html/public/index.php"
|
QUERY_STRING | "" |
SCRIPT_URI | "https://luxurymywedding.com/fnb_caterer/salt-and-pepper"
|
SCRIPT_URL | "/fnb_caterer/salt-and-pepper"
|
SCRIPT_NAME | "/public/index.php"
|
SERVER_PROTOCOL | "HTTP/1.1"
|
SERVER_SOFTWARE | "LiteSpeed"
|
REQUEST_METHOD | "GET"
|
X-LSCACHE | "on,crawler,esi,combine"
|
PHP_SELF | "/public/index.php"
|
REQUEST_TIME_FLOAT | 1745022036.1586
|
REQUEST_TIME | 1745022036
|
APP_NAME | "Luxury My Wedding"
|
APP_SHORT_NAME | "LMW"
|
APP_ENV | "local"
|
APP_KEY | "base64:4cYLt4ymyWvxdmdyvczOL74XsfxK1ldYzPFf7al+v3o="
|
APP_DEBUG | "true"
|
APP_LOG_LEVEL | "debug"
|
APP_URL | "http://localhost"
|
DEBUGBAR_ENABLED | "FALSE"
|
DB_CONNECTION | "mysql"
|
DB_HOST | "127.0.0.1"
|
DB_PORT | "3306"
|
DB_DATABASE | "u544263832_lmwdata"
|
DB_USERNAME | "u544263832_lmwuser"
|
DB_PASSWORD | "-SOPDj57An&{"
|
ENABLE_REGISTRATION | "true"
|
REQUIRES_APPROVAL | "false"
|
BROADCAST_DRIVER | "log"
|
CACHE_DRIVER | "file"
|
SESSION_DRIVER | "file"
|
QUEUE_DRIVER | "sync"
|
SESSION_TIMEOUT_STATUS | "true"
|
SESSION_TIMEOUT | "60000"
|
REDIS_HOST | "127.0.0.1"
|
REDIS_PASSWORD | "null"
|
REDIS_PORT | "6379"
|
MAIL_DRIVER | "mail"
|
MAIL_HOST | "smtp.mailtrap.io"
|
MAIL_PORT | "2525"
|
MAIL_FROM | "no-reply@luxurymywedding.com"
|
MAIL_FROM_NAME | "LMW"
|
MAIL_USERNAME | "null"
|
MAIL_PASSWORD | "null"
|
MAIL_ENCRYPTION | "null"
|
PUSHER_APP_ID | "" |
PUSHER_APP_KEY | "" |
PUSHER_APP_SECRET | "" |
JWT_SECRET | "flUMRJC8fkeqS6GdpPdnXZ5Tp7TYAXcB"
|
FACEBOOK_CLIENT_ID | "785205972268767"
|
FACEBOOK_CLIENT_SECRET | "b3e800cecd9dd966792cbde130bcf6c2"
|
FACEBOOK_REDIRECT | "https://www.luxurymywedding.com/logins/facebook"
|
GOOGLE_CLIENT_ID | "1050214283987-8ghea2fjk47tlmm4bbjq3lqtdt01kmtn.apps.googleusercontent.com"
|
GOOGLE_CLIENT_SECRET | "7E4b2tOQRBpgZC7xTt33sUtZ"
|
GOOGLE_REDIRECT | "https://www.luxurymywedding.com/logins/google"
|
RAZORPAY_KEY | "rzp_test_zNpCeBGysCOP5n"
|
RAZORPAY_SECRET | "wHxI9tC9HQX5uBcAVl8xuHgy"
|
Key | Value |
LSPHP_ProcessGroup | "on"
|
PATH | "/usr/local/bin:/bin:/usr/bin"
|
APP_NAME | "Luxury My Wedding"
|
APP_SHORT_NAME | "LMW"
|
APP_ENV | "local"
|
APP_KEY | "base64:4cYLt4ymyWvxdmdyvczOL74XsfxK1ldYzPFf7al+v3o="
|
APP_DEBUG | "true"
|
APP_LOG_LEVEL | "debug"
|
APP_URL | "http://localhost"
|
DEBUGBAR_ENABLED | "FALSE"
|
DB_CONNECTION | "mysql"
|
DB_HOST | "127.0.0.1"
|
DB_PORT | "3306"
|
DB_DATABASE | "u544263832_lmwdata"
|
DB_USERNAME | "u544263832_lmwuser"
|
DB_PASSWORD | "-SOPDj57An&{"
|
ENABLE_REGISTRATION | "true"
|
REQUIRES_APPROVAL | "false"
|
BROADCAST_DRIVER | "log"
|
CACHE_DRIVER | "file"
|
SESSION_DRIVER | "file"
|
QUEUE_DRIVER | "sync"
|
SESSION_TIMEOUT_STATUS | "true"
|
SESSION_TIMEOUT | "60000"
|
REDIS_HOST | "127.0.0.1"
|
REDIS_PASSWORD | "null"
|
REDIS_PORT | "6379"
|
MAIL_DRIVER | "mail"
|
MAIL_HOST | "smtp.mailtrap.io"
|
MAIL_PORT | "2525"
|
MAIL_FROM | "no-reply@luxurymywedding.com"
|
MAIL_FROM_NAME | "LMW"
|
MAIL_USERNAME | "null"
|
MAIL_PASSWORD | "null"
|
MAIL_ENCRYPTION | "null"
|
PUSHER_APP_ID | "" |
PUSHER_APP_KEY | "" |
PUSHER_APP_SECRET | "" |
JWT_SECRET | "flUMRJC8fkeqS6GdpPdnXZ5Tp7TYAXcB"
|
FACEBOOK_CLIENT_ID | "785205972268767"
|
FACEBOOK_CLIENT_SECRET | "b3e800cecd9dd966792cbde130bcf6c2"
|
FACEBOOK_REDIRECT | "https://www.luxurymywedding.com/logins/facebook"
|
GOOGLE_CLIENT_ID | "1050214283987-8ghea2fjk47tlmm4bbjq3lqtdt01kmtn.apps.googleusercontent.com"
|
GOOGLE_CLIENT_SECRET | "7E4b2tOQRBpgZC7xTt33sUtZ"
|
GOOGLE_REDIRECT | "https://www.luxurymywedding.com/logins/google"
|
RAZORPAY_KEY | "rzp_test_zNpCeBGysCOP5n"
|
RAZORPAY_SECRET | "wHxI9tC9HQX5uBcAVl8xuHgy"
|