first commit

This commit is contained in:
2024-07-12 08:03:32 +07:00
commit 7f9359656d
122 changed files with 13427 additions and 0 deletions

17
app/Helpers/Helper.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
namespace App\Helpers;
class Helper
{
public static function isProduction()
{
return env('APP_ENV') === 'production';
}
public static function isStaging()
{
return env('APP_ENV') === 'staging';
}
}