Looking to hire Laravel developers? Try LaraJobs

foggy-laravel maintained by worksome

Description
Adds Foggy support in Laravel
Last update
2026/03/02 17:31 (dev-main)
License
Links
Downloads
572 247

Comments
comments powered by Disqus

Laravel Foggy

This package is a Laravel wrapper for Foggy.

Configuration of the plugin can be found at Foggy's docs.

Install

Via Composer

composer require worksome/foggy-laravel

Usage

This package adds a new artisan command for running Foggy. Simply type:

php artisan db:dump

It will by default assume that the Foggy config file, will be in foggy.json in the root of the project.
A configuration file can be supplied by using --config argument.

The artisan command by default will make the database dump to stdout. To pass the output to a file, use the --output (-o) option.

php artisan db:dump --output scrubbed-dump.sql

Foggy also supports specifying a custom database connection:

php artisan db:dump --connection mysql