Recognized by

Ministry of Tourism Govt. of NCT of Delhi

Image

HOLIDAYS IN INDIA

Peace Travels, recognised by the Ministry of Tourism, Govt. of NCT of Delhi is one of the reputed Tour Operators of India – New Delhi & the best Destination Management Company of Delhi. Specialist in organising tour packages by Car Ex. Delhi. Some of the hot selling tour packages are :- 5 Days Himachal Tour Package by Car Ex. Delhi, 9 Days Himachal Tour Package with Amritsar by Car Ex. Delhi, 6 days Uttarakhand Tour package by Car Ex. Delhi, 6 days Rajasthan Tour package with Agra by Car Ex. Delhi & many more...

INTERNATIONAL HOLIDAYS

Founded in 2005, one of the reputed outbound tour operators - Peace Travels, recognised by the Ministry of Tourism, Govt. of NCT of Delhi & the best Destination Management Company for UAE, Thailand, Malaysia, Singapore, Srilanka, Hongkong, Mauritius, Europe & more... Specialist in organising short duration trips. You may book with us the entire package or just a specific tour or just the pick up/drop & transport service. We are capable enough to take care of all your travel needs Internationally.


Testimonials

Our Customers' Experience

Affiliated Hotels

Whoops! There was an error.
ErrorException (E_NOTICE)
file_put_contents(): write of 248 bytes failed with errno=122 Disk quota exceeded ErrorException thrown with message "file_put_contents(): write of 248 bytes failed with errno=122 Disk quota exceeded" Stacktrace: #7 ErrorException in /home4/peacetravelscom/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122 #6 file_put_contents in /home4/peacetravelscom/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122 #5 Illuminate\Filesystem\Filesystem:put in /home4/peacetravelscom/public_html/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php:83 #4 Illuminate\Session\FileSessionHandler:write in /home4/peacetravelscom/public_html/vendor/laravel/framework/src/Illuminate/Session/Store.php:128 #3 Illuminate\Session\Store:save in /home4/peacetravelscom/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:87 #2 Illuminate\Session\Middleware\StartSession:terminate in /home4/peacetravelscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:218 #1 Illuminate\Foundation\Http\Kernel:terminateMiddleware in /home4/peacetravelscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:189 #0 Illuminate\Foundation\Http\Kernel:terminate in /home4/peacetravelscom/public_html/public/index.php:60
7
ErrorException
/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php122
6
file_put_contents
/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php122
5
Illuminate\Filesystem\Filesystem put
/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php83
4
Illuminate\Session\FileSessionHandler write
/vendor/laravel/framework/src/Illuminate/Session/Store.php128
3
Illuminate\Session\Store save
/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php87
2
Illuminate\Session\Middleware\StartSession terminate
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php218
1
Illuminate\Foundation\Http\Kernel terminateMiddleware
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php189
0
Illuminate\Foundation\Http\Kernel terminate
/public/index.php60
/home4/peacetravelscom/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
     *
     * @param  string  $path
     * @return string
     */
    public function hash($path)
    {
        return md5_file($path);
    }
 
    /**
     * Write the contents of a file.
     *
     * @param  string  $path
     * @param  string  $contents
     * @param  bool  $lock
     * @return int
     */
    public function put($path, $contents, $lock = false)
    {
        return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
    }
 
    /**
     * Prepend to a file.
     *
     * @param  string  $path
     * @param  string  $data
     * @return int
     */
    public function prepend($path, $data)
    {
        if ($this->exists($path)) {
            return $this->put($path, $data.$this->get($path));
        }
 
        return $this->put($path, $data);
    }
 
    /**
     * Append to a file.
Arguments
  1. "file_put_contents(): write of 248 bytes failed with errno=122 Disk quota exceeded"
    
/home4/peacetravelscom/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
     *
     * @param  string  $path
     * @return string
     */
    public function hash($path)
    {
        return md5_file($path);
    }
 
    /**
     * Write the contents of a file.
     *
     * @param  string  $path
     * @param  string  $contents
     * @param  bool  $lock
     * @return int
     */
    public function put($path, $contents, $lock = false)
    {
        return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
    }
 
    /**
     * Prepend to a file.
     *
     * @param  string  $path
     * @param  string  $data
     * @return int
     */
    public function prepend($path, $data)
    {
        if ($this->exists($path)) {
            return $this->put($path, $data.$this->get($path));
        }
 
        return $this->put($path, $data);
    }
 
    /**
     * Append to a file.
Arguments
  1. "/home4/peacetravelscom/public_html/storage/framework/sessions/A29tXYCCv6G48MUZNHGCPSiD55Du7MeV8ibQBwpX"
    
  2. "a:5:{s:6:"_token";s:40:"qNwi5a67bdHpm2HzrgozU39hieTtCMdYCrQ1XxH1";s:8:"currency";s:3:"INR";s:22:"PHPDEBUGBAR_STACK_DATA";a:0:{}s:9:"_previous";a:1:{s:3:"url";s:29:"https://peacetravelsindia.com";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. 2
    
/home4/peacetravelscom/public_html/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php
    /**
     * {@inheritdoc}
     */
    public function read($sessionId)
    {
        if ($this->files->exists($path = $this->path.'/'.$sessionId)) {
            if (filemtime($path) >= Carbon::now()->subMinutes($this->minutes)->getTimestamp()) {
                return $this->files->get($path, true);
            }
        }
 
        return '';
    }
 
    /**
     * {@inheritdoc}
     */
    public function write($sessionId, $data)
    {
        $this->files->put($this->path.'/'.$sessionId, $data, true);
 
        return true;
    }
 
    /**
     * {@inheritdoc}
     */
    public function destroy($sessionId)
    {
        $this->files->delete($this->path.'/'.$sessionId);
 
        return true;
    }
 
    /**
     * {@inheritdoc}
     */
    public function gc($lifetime)
    {
        $files = Finder::create()
Arguments
  1. "/home4/peacetravelscom/public_html/storage/framework/sessions/A29tXYCCv6G48MUZNHGCPSiD55Du7MeV8ibQBwpX"
    
  2. "a:5:{s:6:"_token";s:40:"qNwi5a67bdHpm2HzrgozU39hieTtCMdYCrQ1XxH1";s:8:"currency";s:3:"INR";s:22:"PHPDEBUGBAR_STACK_DATA";a:0:{}s:9:"_previous";a:1:{s:3:"url";s:29:"https://peacetravelsindia.com";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. true
    
/home4/peacetravelscom/public_html/vendor/laravel/framework/src/Illuminate/Session/Store.php
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForUnserialize($data)
    {
        return $data;
    }
 
    /**
     * Save the session data to storage.
     *
     * @return bool
     */
    public function save()
    {
        $this->ageFlashData();
 
        $this->handler->write($this->getId(), $this->prepareForStorage(
            serialize($this->attributes)
        ));
 
        $this->started = false;
    }
 
    /**
     * Prepare the serialized session data for storage.
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForStorage($data)
    {
        return $data;
    }
 
    /**
     * Age the flash data for the session.
     *
     * @return void
Arguments
  1. "A29tXYCCv6G48MUZNHGCPSiD55Du7MeV8ibQBwpX"
    
  2. "a:5:{s:6:"_token";s:40:"qNwi5a67bdHpm2HzrgozU39hieTtCMdYCrQ1XxH1";s:8:"currency";s:3:"INR";s:22:"PHPDEBUGBAR_STACK_DATA";a:0:{}s:9:"_previous";a:1:{s:3:"url";s:29:"https://peacetravelsindia.com";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
/home4/peacetravelscom/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
        if ($this->sessionConfigured()) {
            $this->storeCurrentUrl($request, $session);
 
            $this->addCookieToResponse($response, $session);
        }
 
        return $response;
    }
 
    /**
     * Perform any final actions for the request lifecycle.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Symfony\Component\HttpFoundation\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        if ($this->sessionHandled && $this->sessionConfigured() && ! $this->usingCookieSessions()) {
            $this->manager->driver()->save();
        }
    }
 
    /**
     * Start the session for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Contracts\Session\Session
     */
    protected function startSession(Request $request)
    {
        return tap($this->getSession($request), function ($session) use ($request) {
            $session->setRequestOnHandler($request);
 
            $session->start();
        });
    }
 
    /**
     * Get the session implementation from the manager.
/home4/peacetravelscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
     * @return void
     */
    protected function terminateMiddleware($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddleware($request),
            $this->middleware
        );
 
        foreach ($middlewares as $middleware) {
            if (! is_string($middleware)) {
                continue;
            }
 
            list($name) = $this->parseMiddleware($middleware);
 
            $instance = $this->app->make($name);
 
            if (method_exists($instance, 'terminate')) {
                $instance->terminate($request, $response);
            }
        }
    }
 
    /**
     * Gather the route middleware for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    protected function gatherRouteMiddleware($request)
    {
        if ($route = $request->route()) {
            return $this->router->gatherRouteMiddleware($route);
        }
 
        return [];
    }
 
    /**
Arguments
  1. Request {#42
      #json: null
      #convertedFiles: null
      #userResolver: Closure {#746
        class: "Illuminate\Auth\AuthServiceProvider"
        this: AuthServiceProvider {#41 …}
        parameters: {
          $guard: {
            default: null
          }
        }
        use: {
          $app: Application {#2 …}
        }
      }
      #routeResolver: Closure {#754
        class: "Illuminate\Routing\Router"
        this: Router {#25 …}
        use: {
          $route: Route {#196 …}
        }
      }
      +attributes: ParameterBag {#44}
      +request: ParameterBag {#50}
      +query: ParameterBag {#50}
      +server: ServerBag {#46}
      +files: FileBag {#47}
      +cookies: ParameterBag {#45}
      +headers: HeaderBag {#48}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/"
      #requestUri: "/"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Store {#610}
      #locale: null
      #defaultLocale: "en"
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Response {#804}
    
/home4/peacetravelscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
     */
    protected function dispatchToRouter()
    {
        return function ($request) {
            $this->app->instance('request', $request);
 
            return $this->router->dispatch($request);
        };
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        $this->terminateMiddleware($request, $response);
 
        $this->app->terminate();
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    protected function terminateMiddleware($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddleware($request),
            $this->middleware
        );
 
        foreach ($middlewares as $middleware) {
            if (! is_string($middleware)) {
Arguments
  1. Request {#42
      #json: null
      #convertedFiles: null
      #userResolver: Closure {#746
        class: "Illuminate\Auth\AuthServiceProvider"
        this: AuthServiceProvider {#41 …}
        parameters: {
          $guard: {
            default: null
          }
        }
        use: {
          $app: Application {#2 …}
        }
      }
      #routeResolver: Closure {#754
        class: "Illuminate\Routing\Router"
        this: Router {#25 …}
        use: {
          $route: Route {#196 …}
        }
      }
      +attributes: ParameterBag {#44}
      +request: ParameterBag {#50}
      +query: ParameterBag {#50}
      +server: ServerBag {#46}
      +files: FileBag {#47}
      +cookies: ParameterBag {#45}
      +headers: HeaderBag {#48}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/"
      #requestUri: "/"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Store {#610}
      #locale: null
      #defaultLocale: "en"
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Response {#804}
    
/home4/peacetravelscom/public_html/public/index.php
|--------------------------------------------------------------------------
| 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);
 
Arguments
  1. Request {#42
      #json: null
      #convertedFiles: null
      #userResolver: Closure {#746
        class: "Illuminate\Auth\AuthServiceProvider"
        this: AuthServiceProvider {#41 …}
        parameters: {
          $guard: {
            default: null
          }
        }
        use: {
          $app: Application {#2 …}
        }
      }
      #routeResolver: Closure {#754
        class: "Illuminate\Routing\Router"
        this: Router {#25 …}
        use: {
          $route: Route {#196 …}
        }
      }
      +attributes: ParameterBag {#44}
      +request: ParameterBag {#50}
      +query: ParameterBag {#50}
      +server: ServerBag {#46}
      +files: FileBag {#47}
      +cookies: ParameterBag {#45}
      +headers: HeaderBag {#48}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/"
      #requestUri: "/"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Store {#610}
      #locale: null
      #defaultLocale: "en"
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Response {#804}
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
LSPHP_ENABLE_USER_INI
"on"
PATH
"/usr/local/bin:/usr/bin:/bin"
TEMP
"/tmp"
TMP
"/tmp"
TMPDIR
"/tmp"
PWD
"/"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
CONTENT_LENGTH
"0"
HTTP_HOST
"peacetravelsindia.com"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_X_HTTPS
"1"
REDIRECT_UNIQUE_ID
"afci9E6Nku6cyMnXvF1jsQAByC8"
REDIRECT_QS_ConnectionId
"177780402074139383643900"
REDIRECT_SCRIPT_URL
"/"
REDIRECT_SCRIPT_URI
"https://peacetravelsindia.com/"
REDIRECT_HTTPS
"on"
REDIRECT_SSL_TLS_SNI
"peacetravelsindia.com"
REDIRECT_HTTP2
"on"
REDIRECT_H2PUSH
"off"
REDIRECT_H2_PUSH
"off"
REDIRECT_H2_PUSHED
""
REDIRECT_H2_PUSHED_ON
""
REDIRECT_H2_STREAM_ID
"3"
REDIRECT_H2_STREAM_TAG
"643900-1153-3"
REDIRECT_STATUS
"200"
UNIQUE_ID
"afci9E6Nku6cyMnXvF1jsQAByC8"
QS_ConnectionId
"177780402074139383643900"
SCRIPT_URL
"/"
SCRIPT_URI
"https://peacetravelsindia.com/"
HTTPS
"on"
SSL_TLS_SNI
"peacetravelsindia.com"
HTTP2
"on"
H2PUSH
"off"
H2_PUSH
"off"
H2_PUSHED
""
H2_PUSHED_ON
""
H2_STREAM_ID
"3"
H2_STREAM_TAG
"643900-1153-3"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache"
SERVER_NAME
"peacetravelsindia.com"
SERVER_ADDR
"103.53.40.13"
SERVER_PORT
"443"
REMOTE_ADDR
"216.73.217.1"
DOCUMENT_ROOT
"/home4/peacetravelscom/public_html"
REQUEST_SCHEME
"https"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home4/peacetravelscom/public_html"
SERVER_ADMIN
"webmaster@peacetravelsindia.com"
SCRIPT_FILENAME
"/home4/peacetravelscom/public_html/public/index.php"
REMOTE_PORT
"43490"
REDIRECT_URL
"/"
SERVER_PROTOCOL
"HTTP/2.0"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/"
SCRIPT_NAME
"/public/index.php"
PHP_SELF
"/public/index.php"
REQUEST_TIME_FLOAT
1777804021.3074
REQUEST_TIME
1777804021
argv
[]
argc
0
APP_NAME
"Peace Travels"
APP_ENV
"local"
APP_KEY
"base64:BcJpJHCLEYtoeJNfaTh5QHcifMcrsQ8CCYP87JRW/W4="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://peacetravelsindia.com"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"peacetra_peacetravels"
DB_USERNAME
"peacetra_user"
DB_PASSWORD
"RX(v*1c67wGB"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"mail"
MAIL_HOST
"mail.gmail.com"
MAIL_PORT
"587"
MAIL_USERNAME
"test@gmail.com"
MAIL_PASSWORD
"test@4321"
MAIL_ENCRYPTION
"tls"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
FB_CLIENT_ID
"749270482204859"
FB_CLIENT_SECRET
"452f86d4133135803452ce8240967d0a"
FB_REDIRECT
"http://demo.peacetravelsindia.com/callback/facebook"
GOOGLE_CLIENT_ID
"204647776623-dj8ktihson5rnv6fel10mfp3sim7r87c.apps.googleusercontent.com"
GOOGLE_CLIENT_SECRET
"ee5c3Al9q6XM3C83maAad2xk"
GOOGLE_REDIRECT
"http://peacetravelsindia.com/callback/google"
ROLES_DEFAULT_USER_MODEL
"App\User"
ROLES_DEFAULT_ROLE_MODEL
"jeremykenedy\LaravelRoles\Models\Role"
ROLES_DEFAULT_PERMISSION_MODEL
"jeremykenedy\LaravelRoles\Models\Permission"
ROLES_DATABASE_CONNECTION
"null"
ROLES_ROLES_DATABASE_TABLE
"roles"
ROLES_ROLE_USER_DATABASE_TABLE
"role_user"
ROLES_PERMISSIONS_DATABASE_TABLE
"permissions"
ROLES_PERMISSION_ROLE_DATABASE_TABLE
"permission_role"
ROLES_PERMISSION_USER_DATABASE_TABLE
"permission_user"
ROLES_DEFAULT_SEPARATOR
"."
ROLES_MIGRATION_DEFAULT_ENABLED
"true"
ROLES_SEED_DEFAULT_PERMISSIONS
"true"
ROLES_SEED_DEFAULT_ROLES
"true"
ROLES_SEED_DEFAULT_RELATIONSHIPS
"true"
ROLES_SEED_DEFAULT_USERS
"false"
ROLES_GUI_ENABLED
"false"
ROLES_GUI_AUTH_ENABLED
"true"
ROLES_GUI_MIDDLEWARE_ENABLED
"true"
ROLES_GUI_MIDDLEWARE
"role:admin"
ROLES_GUI_CREATE_ROLE_MIDDLEWARE_TYPE
"role"
ROLES_GUI_CREATE_PERMISSION_MIDDLEWARE_TYPE
"role"
ROLES_GUI_BLADE_EXTENDED
"layouts.app"
ROLES_GUI_TITLE_EXTENDED
"template_title"
ROLES_GUI_LARAVEL_ROLES_ENABLED
"false"
ROLES_GUI_TOOLTIPS_ENABLED
"true"
ROLES_GUI_DATATABLES_JS_ENABLED
"false"
OPEN_EXCHANGE_RATE_KEY
"73aefcf03f4944579419d145bfef0039"
DEFAULT_CURRENCY
"INR"
Key Value
APP_NAME
"Peace Travels"
APP_ENV
"local"
APP_KEY
"base64:BcJpJHCLEYtoeJNfaTh5QHcifMcrsQ8CCYP87JRW/W4="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://peacetravelsindia.com"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"peacetra_peacetravels"
DB_USERNAME
"peacetra_user"
DB_PASSWORD
"RX(v*1c67wGB"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"mail"
MAIL_HOST
"mail.gmail.com"
MAIL_PORT
"587"
MAIL_USERNAME
"test@gmail.com"
MAIL_PASSWORD
"test@4321"
MAIL_ENCRYPTION
"tls"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
FB_CLIENT_ID
"749270482204859"
FB_CLIENT_SECRET
"452f86d4133135803452ce8240967d0a"
FB_REDIRECT
"http://demo.peacetravelsindia.com/callback/facebook"
GOOGLE_CLIENT_ID
"204647776623-dj8ktihson5rnv6fel10mfp3sim7r87c.apps.googleusercontent.com"
GOOGLE_CLIENT_SECRET
"ee5c3Al9q6XM3C83maAad2xk"
GOOGLE_REDIRECT
"http://peacetravelsindia.com/callback/google"
ROLES_DEFAULT_USER_MODEL
"App\User"
ROLES_DEFAULT_ROLE_MODEL
"jeremykenedy\LaravelRoles\Models\Role"
ROLES_DEFAULT_PERMISSION_MODEL
"jeremykenedy\LaravelRoles\Models\Permission"
ROLES_DATABASE_CONNECTION
"null"
ROLES_ROLES_DATABASE_TABLE
"roles"
ROLES_ROLE_USER_DATABASE_TABLE
"role_user"
ROLES_PERMISSIONS_DATABASE_TABLE
"permissions"
ROLES_PERMISSION_ROLE_DATABASE_TABLE
"permission_role"
ROLES_PERMISSION_USER_DATABASE_TABLE
"permission_user"
ROLES_DEFAULT_SEPARATOR
"."
ROLES_MIGRATION_DEFAULT_ENABLED
"true"
ROLES_SEED_DEFAULT_PERMISSIONS
"true"
ROLES_SEED_DEFAULT_ROLES
"true"
ROLES_SEED_DEFAULT_RELATIONSHIPS
"true"
ROLES_SEED_DEFAULT_USERS
"false"
ROLES_GUI_ENABLED
"false"
ROLES_GUI_AUTH_ENABLED
"true"
ROLES_GUI_MIDDLEWARE_ENABLED
"true"
ROLES_GUI_MIDDLEWARE
"role:admin"
ROLES_GUI_CREATE_ROLE_MIDDLEWARE_TYPE
"role"
ROLES_GUI_CREATE_PERMISSION_MIDDLEWARE_TYPE
"role"
ROLES_GUI_BLADE_EXTENDED
"layouts.app"
ROLES_GUI_TITLE_EXTENDED
"template_title"
ROLES_GUI_LARAVEL_ROLES_ENABLED
"false"
ROLES_GUI_TOOLTIPS_ENABLED
"true"
ROLES_GUI_DATATABLES_JS_ENABLED
"false"
OPEN_EXCHANGE_RATE_KEY
"73aefcf03f4944579419d145bfef0039"
DEFAULT_CURRENCY
"INR"
0. Whoops\Handler\PrettyPageHandler