MUMARA CAMPAIGN - SOURCE CODE
by mailpassuser - Saturday September 14, 2024 at 03:09 PM
#1
MUMARA CAMPAIGN - SOURCE CODE

https://www.mumara.com/campaigns/

$5.000 FULL SOURCE CODE - NEVER BEEN SOLD BEFORE

PROOF - Replace your applicationSettings.php with this code:

<?php namespace App; use Illuminate\Database\Eloquent\Model; class applicationSettings extends Model {     protected $fillable = ['setting_name', 'setting_value'];     public $timestamps = false;     public static function boot()     {         parent::boot();         self::created(function ($model) {             writeApplicationSettingsToFile($model);         });         self::saved(function ($model) {             writeApplicationSettingsToFile($model);         });         self::updated(function ($model) {             writeApplicationSettingsToFile($model);         });     }     protected function writeApplicationSettingsToFile($model)     {         // ... code here         $vars = $model::all([             'setting_name', 'setting_value',         ])             ->keyBy('setting_name') // key every setting by its name             ->transform(function ($setting) {                 return $setting->setting_value; // return only the value             })->toArray(); // make it an array         $str = "<?php \n ".'$settings ='." \n [ \n";         foreach ($vars as $key => $var) {             if ($key != 'fallback_private_key' || $key != 'fallback_public_key') {                 if ($var == null) {                     $str .= "'$key' =>".'null,'."\n";                 } else {                     $str .= "'$key' =>"."'".addcslashes($var, "'")."',"."\n";                 } // Escaping single quotes             }         }         $str .= ' ];';         $dirPath = storage_path('framework/settings');         createDir($dirPath, 0777);         file_put_contents("$dirPath/app.php", $str);     } }
Reply
#2
how's it going,waiting for you,you said:Help me install it on the server
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  SELLING https//lumosgaming.com Source Code + Users Dump wh0isindra 0 1,118 07-08-2026, 02:20 AM
Last Post: wh0isindra
  SELLING [ DATABASE + SOURCE CODE ] wasil-iq.com 24.000 Customer meClaratZ01 1 2,829 03-28-2026, 02:04 AM
Last Post: 1twii
  [182k] [France] code-et-conduite.fr - User Database: Names, Emails, Logins & Passwor Bestjpdata1 2 2,787 02-10-2026, 02:29 PM
Last Post: Bestjpdata1
  SELLING ⚡GECE - Area Code VoIP Service - Bulk SMS & WhatsApp Sms gece 3 4,200 02-10-2026, 08:21 AM
Last Post: llardo
  SOURCE CODE Undetected RAT source code. Alcachofo 19 1,483 02-08-2026, 11:19 PM
Last Post: Alcachofo



 Users browsing this thread: