diff --git a/src/helpers.php b/src/helpers.php index 6d4952c..9b33f5f 100644 --- a/src/helpers.php +++ b/src/helpers.php @@ -3,6 +3,13 @@ use App\Models\User; use Illuminate\Support\Str; +if (! function_exists('isDebug')) { + function isDebug(): bool + { + return config('app.debug'); + } +} + if (! function_exists('isLocal')) { function isLocal(): bool {