Start Project

Get Quotes Check your Local Pros

Pros Near You

Find Plumbing contractors in your area by city or zip

Plumbing companies near me - Bay Pines, FL

These companies might be able to provide a Plumbing in your area

Bay Area Plumbing

(4.2 of 20 reviews)
4101 E 12th Ave Ste E-2, Tampa  FL , 33605
Bay Area Plumbing, Inc. is family owned and operated and has been in business for over 18 years. We serve Hillsborough, Pinellas and Pasco Counties. Bay Area Plumbing, Inc. was voted by the South Tampa Chamber of Commerce as the 2014 Medium Business of the Year. We offer Quality Service from Bay to Bay and a 100% Satisfaction Guarantee.
(813) 837-8666

Prendi plumbing

(5 of 3 reviews)
, Clearwater  FL , 33765
Open 24 Hours
(727) 315-3845

Clearwater Plumbing

(4.3 of 10 reviews)
2101 Calumet St, Clearwater  FL , 33765
7:00AM-4:30PM
Founded in 1951, Clearwater Plumbing completed the plumbing in many Pinellas county single family homes, schools and apartment buildings in its early years as well as mechanical and fire sprinkler piping applications, and appliances. During the past 35 years, Clearwater Plumbing has concentrated on plumbing, gas and water treatment. The construction division specializes in commercial, industrial, residential high rise and mixed use new construction plumbing. The service department concentrates on commercial and residential plumbing services, piping and water heating.
(727) 446-8355

Kelley Plumbing

(0 of 0 reviews)
, Tampa Bay  FL , 33605
Open 24 Hours
(727) 509-5915

Graywater Plumbing

(5 of 2 reviews)
, Safety Harbor  FL , 34695
8:00AM-5:00PM
Jeremy was trained as a plumber the old-fashioned way, by other seasoned plumbers. After graduating high school, he started working at his family's company and worked his way up by learning from the best. Over 20 years later, after moving from Michigan to Florida, he knew it was time to start his own company. Jeremy is known by his customers across Pinellas and Hillsborough counties as a friendly, skilled and knowledgeable plumber who puts his customers first and charges a fair price for his work. Over the last 3 years, with the support of his wife and family, he has grown his business based on word of mouth reputation and hard work. Graywater Plumbings goal for the future is to grow our business while maintaining that same level of quality and service our customers have come to expect.
(727) 424-9916

Turn-key Home Improvement

(5 of 7 reviews)
6232 43rd Ave N, Kenneth City  FL , 33709
8:00AM-6:00PM
(727) 831-2601

Antone's Plumbing

(3.7 of 7 reviews)
6412 7th Ave N, Saint Petersburg  FL , 33710
Antone's Plumbing was established in 1988 with the goal of providing customers with high quality, professional work and excellent customer service. We are a small, family owned and operated business located in St. Petersburg, Florida. We value and appreciate our loyal customers and strive to always maintain the relationships we've established along the way.
(727) 343-4193

Max Solon Plumbing

(4.6 of 19 reviews)
, Saint Petersburg  FL , 33708
CFC 1429697
We have established a great Team that is Honest, Friendly, and Reliable. We strive our best to please every customer to the best of our ability with quality work and competitive pricing. Feel free to call or text my personal cell at 727-422-9062 for services.
Thank you, Max Solon
(727) 422-9062
 Whoops! There was an error.
ErrorException (E_WARNING)
file_put_contents(): Only 0 of 220 bytes written, possibly out of free disk space ErrorException thrown with message "file_put_contents(): Only 0 of 220 bytes written, possibly out of free disk space" Stacktrace: #7 ErrorException in /home/admin/web/localprobook.com/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122 #6 file_put_contents in /home/admin/web/localprobook.com/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122 #5 Illuminate\Filesystem\Filesystem:put in /home/admin/web/localprobook.com/public_html/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php:83 #4 Illuminate\Session\FileSessionHandler:write in /home/admin/web/localprobook.com/public_html/vendor/laravel/framework/src/Illuminate/Session/Store.php:128 #3 Illuminate\Session\Store:save in /home/admin/web/localprobook.com/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:87 #2 Illuminate\Session\Middleware\StartSession:terminate in /home/admin/web/localprobook.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:218 #1 Illuminate\Foundation\Http\Kernel:terminateMiddleware in /home/admin/web/localprobook.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:189 #0 Illuminate\Foundation\Http\Kernel:terminate in /home/admin/web/localprobook.com/public_html/public/index.php:61
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.php61
/home/admin/web/localprobook.com/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(): Only 0 of 220 bytes written, possibly out of free disk space"
    
/home/admin/web/localprobook.com/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. "/home/admin/web/localprobook.com/public_html/storage/framework/sessions/aXNgDfBastYonlhXEfBEOvMA2vpT3ganUJ5WDUoE"
    
  2. "a:3:{s:6:"_token";s:40:"n1m460i1feUp2GIJG00WGe67M8Q32joCwluiLCiW";s:9:"_previous";a:1:{s:3:"url";s:62:"https://www.localprobook.com/nearme/plumbing/bay-pines.fl.html";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. 2
    
/home/admin/web/localprobook.com/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. "/home/admin/web/localprobook.com/public_html/storage/framework/sessions/aXNgDfBastYonlhXEfBEOvMA2vpT3ganUJ5WDUoE"
    
  2. "a:3:{s:6:"_token";s:40:"n1m460i1feUp2GIJG00WGe67M8Q32joCwluiLCiW";s:9:"_previous";a:1:{s:3:"url";s:62:"https://www.localprobook.com/nearme/plumbing/bay-pines.fl.html";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. true
    
/home/admin/web/localprobook.com/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. "aXNgDfBastYonlhXEfBEOvMA2vpT3ganUJ5WDUoE"
    
  2. "a:3:{s:6:"_token";s:40:"n1m460i1feUp2GIJG00WGe67M8Q32joCwluiLCiW";s:9:"_previous";a:1:{s:3:"url";s:62:"https://www.localprobook.com/nearme/plumbing/bay-pines.fl.html";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
/home/admin/web/localprobook.com/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.
/home/admin/web/localprobook.com/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 {
      #json: null
      #convertedFiles: null
      #userResolver: Closure {
        class: "Illuminate\Auth\AuthServiceProvider"
        this: AuthServiceProvider { …}
        parameters: {
          $guard: {
            default: null
          }
        }
        use: {
          $app: Application { …}
        }
      }
      #routeResolver: Closure {
        class: "Illuminate\Routing\Router"
        this: Router { …}
        use: {
          $route: Route { …}
        }
      }
      +attributes: ParameterBag {}
      +request: ParameterBag {#1}
      +query: ParameterBag {#1}
      +server: ServerBag {}
      +files: FileBag {}
      +cookies: ParameterBag {}
      +headers: HeaderBag {}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/nearme/plumbing/bay-pines.fl.html"
      #requestUri: "/nearme/plumbing/bay-pines.fl.html"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Store {}
      #locale: null
      #defaultLocale: "en"
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Response {}
    
/home/admin/web/localprobook.com/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 {
      #json: null
      #convertedFiles: null
      #userResolver: Closure {
        class: "Illuminate\Auth\AuthServiceProvider"
        this: AuthServiceProvider { …}
        parameters: {
          $guard: {
            default: null
          }
        }
        use: {
          $app: Application { …}
        }
      }
      #routeResolver: Closure {
        class: "Illuminate\Routing\Router"
        this: Router { …}
        use: {
          $route: Route { …}
        }
      }
      +attributes: ParameterBag {}
      +request: ParameterBag {#1}
      +query: ParameterBag {#1}
      +server: ServerBag {}
      +files: FileBag {}
      +cookies: ParameterBag {}
      +headers: HeaderBag {}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/nearme/plumbing/bay-pines.fl.html"
      #requestUri: "/nearme/plumbing/bay-pines.fl.html"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Store {}
      #locale: null
      #defaultLocale: "en"
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Response {}
    
/home/admin/web/localprobook.com/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()
);
//use Illuminate\Support\Facades\Log;
//Log::info('verifyInAppPurchaseDetails', ["productGroupId"=>$_SERVER]);
 
$response->send();
 
$kernel->terminate($request, $response);
 
Arguments
  1. Request {
      #json: null
      #convertedFiles: null
      #userResolver: Closure {
        class: "Illuminate\Auth\AuthServiceProvider"
        this: AuthServiceProvider { …}
        parameters: {
          $guard: {
            default: null
          }
        }
        use: {
          $app: Application { …}
        }
      }
      #routeResolver: Closure {
        class: "Illuminate\Routing\Router"
        this: Router { …}
        use: {
          $route: Route { …}
        }
      }
      +attributes: ParameterBag {}
      +request: ParameterBag {#1}
      +query: ParameterBag {#1}
      +server: ServerBag {}
      +files: FileBag {}
      +cookies: ParameterBag {}
      +headers: HeaderBag {}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/nearme/plumbing/bay-pines.fl.html"
      #requestUri: "/nearme/plumbing/bay-pines.fl.html"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Store {}
      #locale: null
      #defaultLocale: "en"
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Response {}
    

Environment & details:

empty
empty
empty
Key Value
XSRF-TOKEN
"eyJpdiI6InZzSXRMZUMwMkxHUHRtVDVDZ3VwNWc9PSIsInZhbHVlIjoib3lPSXVTazV1bGpXMnVIRTcwQ002RkRrRzRhZzBpWXdIVUE4KzNuUDZnVXh2K3Q0dE1SbkRxV0hVU0dya3NNVyIsIm1hYyI6IjdhMjliZGJkNWVlZWI0ZTJjYTI3NTkwZDhlZGQzYzc4YTNmYjVjZmVkNGI3MWJiZWYxNDFkOGFjMmUwNDI0M2IifQ=="
laravel_session
"eyJpdiI6Ikw1eUloaW1Gem5MN0QwK082bHpJT1E9PSIsInZhbHVlIjoiWjM1SG1mM05ZaFJsSFdwWnJCNU55NERSWUQyaFlqajQ4QUFSOW9rRFBqS2kyQlA1QlwvUnNXdFVZQllJUlhhWmZ4WWZLUXI1XC9iRlBKRGVOQkpJbytXcm5SeU1RYWRud2F0OWVcL3NPVkptc3JoaEdoUGdHd0NvdUNjT0Y2eGQ1QXMiLCJtYWMiOiJjZTVjMmQxN2NmYjVlNWIyYTNjOGVjYTZkZDczZWQ5NjI1Njg2OWU4YmY2OTI2NmY2OTZhOTU5ZDY0NjQ3MzQ0In0="
empty
Key Value
REDIRECT_REDIRECT_HTTPS
"on"
REDIRECT_REDIRECT_STATUS
"200"
REDIRECT_HTTPS
"on"
REDIRECT_STATUS
"200"
HTTPS
"on"
HTTP_HOST
"www.localprobook.com"
HTTP_X_FORWARDED_FOR
"216.73.216.58"
HTTP_CONNECTION
"close"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_COOKIE
"XSRF-TOKEN=eyJpdiI6InZzSXRMZUMwMkxHUHRtVDVDZ3VwNWc9PSIsInZhbHVlIjoib3lPSXVTazV1bGpXMnVIRTcwQ002RkRrRzRhZzBpWXdIVUE4KzNuUDZnVXh2K3Q0dE1SbkRxV0hVU0dya3NNVyIsIm1hYyI6IjdhMjliZGJkNWVlZWI0ZTJjYTI3NTkwZDhlZGQzYzc4YTNmYjVjZmVkNGI3MWJiZWYxNDFkOGFjMmUwNDI0M2IifQ%3D%3D; laravel_session=eyJpdiI6Ikw1eUloaW1Gem5MN0QwK082bHpJT1E9PSIsInZhbHVlIjoiWjM1SG1mM05ZaFJsSFdwWnJCNU55NERSWUQyaFlqajQ4QUFSOW9rRFBqS2kyQlA1QlwvUnNXdFVZQllJUlhhWmZ4WWZLUXI1XC9iRlBKRGVOQkpJbytXcm5SeU1RYWRud2F0OWVcL3NPVkptc3JoaEdoUGdHd0NvdUNjT0Y2eGQ1QXMiLCJtYWMiOiJjZTVjMmQxN2NmYjVlNWIyYTNjOGVjYTZkZDczZWQ5NjI1Njg2OWU4YmY2OTI2NmY2OTZhOTU5ZDY0NjQ3MzQ0In0%3D"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache/2.4.25 (Debian) mod_fcgid/2.3.9 OpenSSL/1.0.2u"
SERVER_NAME
"www.localprobook.com"
SERVER_ADDR
"80.77.95.98"
SERVER_PORT
"443"
REMOTE_ADDR
"216.73.216.58"
DOCUMENT_ROOT
"/home/admin/web/localprobook.com/public_html"
REQUEST_SCHEME
"https"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home/admin/web/localprobook.com/public_html"
SERVER_ADMIN
"info@localprobook.com"
SCRIPT_FILENAME
"/home/admin/web/localprobook.com/public_html/public/index.php"
REMOTE_PORT
"48642"
REDIRECT_URL
"/public/nearme/plumbing/bay-pines.fl.html"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.0"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/nearme/plumbing/bay-pines.fl.html"
SCRIPT_NAME
"/public/index.php"
PHP_SELF
"/public/index.php"
REQUEST_TIME_FLOAT
1773327422.118
REQUEST_TIME
1773327422
APP_ENV
"local"
APP_KEY
"base64:voeh9jZTRfaPrNUfBLv0XCTURWzXMJ6FVDE72sq/AYo="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"http://www.localprobook.com"
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
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"null"
MAIL_PASSWORD
"null"
MAIL_ENCRYPTION
"null"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
Key Value
APP_ENV
"local"
APP_KEY
"base64:voeh9jZTRfaPrNUfBLv0XCTURWzXMJ6FVDE72sq/AYo="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"http://www.localprobook.com"
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
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"null"
MAIL_PASSWORD
"null"
MAIL_ENCRYPTION
"null"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
0. Whoops\Handler\PrettyPageHandler