!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/database/seeders/   drwxr-xr-x
Free 13.16 GB of 57.97 GB (22.7%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     UserTableSeeder.php (21.95 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Database\Seeders;

use 
Illuminate\Database\Seeder;
use 
App\Models\User;
use 
App\Domain;
use 
Illuminate\Support\Facades\Hash;
use 
Spatie\Permission\Models\Role;
use 
Spatie\Permission\Models\Permission;
use 
App\Option;
use 
App\Models\Template;
use 
App\Models\Adminmenu;
use 
App\Plan;
use 
App\Term;
use 
App\Meta;
class 
UserTableSeeder extends Seeder
{
    
/**
     * Run the database seeds.
     *
     * @return void
     */
    
public function run()
    {
        
Template::create(['name'=>'Bigbag','src_path'=>'frontend/bigbag','asset_path'=>'frontend/bigbag']);
       
// Template::create(['name'=>'M-Cart','src_path'=>'frontend/m-cart','asset_path'=>'frontend/m-cart']);
        
Template::create(['name'=>'Arafa Cart','src_path'=>'frontend/arafa-cart','asset_path'=>'frontend/arafa-cart']);
        
Template::create(['name'=>'Saka Cart','src_path'=>'frontend/saka-cart','asset_path'=>'frontend/saka-cart']);
        
Template::create(['name'=>'Bazar','src_path'=>'frontend/bazar','asset_path'=>'frontend/bazar']);
        
$super User::create([
            
'role_id' => 1,
            
'domain_id' => 1,
            
'name' => 'Admin',
            
'email' => 'admin@admin.com',
            
'password' => Hash::make('rootadmin'),
        ]);
        
        
        
$roleSuperAdmin Role::create(['name' => 'superadmin']);
        
//create permission
        
$permissions = [
            [
                
'group_name' => 'dashboard',
                
'permissions' => [
                    
'dashboard'
                
]
            ],
            [
                
'group_name' => 'plan',
                
'permissions' => [
                    
'plan.create',
                    
'plan.edit',
                    
'plan.show',
                    
'plan.update',
                    
'plan.delete',
                    
'plan.list',

                ]
            ],

            [
                
'group_name' => 'admin',
                
'permissions' => [
                    
'admin.create',
                    
'admin.edit',
                    
'admin.update',
                    
'admin.delete',
                    
'admin.list',

                ]
            ],
            [
                
'group_name' => 'role',
                
'permissions' => [
                    
'role.create',
                    
'role.edit',
                    
'role.update',
                    
'role.delete',
                    
'role.list',

                ]
            ],
            [
                
'group_name' => 'Pages',
                
'permissions' => [
                    
'page.create',
                    
'page.edit',
                    
'page.delete',
                    
'page.list',
                    
                ]
            ],
            [
                
'group_name' => 'Payment Gateway',
                
'permissions' => [
                    
'payment_gateway.config',
                ]
            ],
            [
                
'group_name' => 'seo',
                
'permissions' => [
                    
'seo',
                ]
            ],
             [
                
'group_name' => 'gallery',
                
'permissions' => [
                    
'gallery.list',
                    
'gallery.create',
                ]
            ],
            [
                
'group_name' => 'Orders',
                
'permissions' => [
                    
'order.create',
                    
'order.edit',
                    
'order.delete',
                    
'order.list',
                    
'order.view',
                ]
            ],
            [
                
'group_name' => 'Report',
                
'permissions' => [
                    
'report.view',
                    
                ]
            ],
            
            [
                
'group_name' => 'Customer',
                
'permissions' => [
                    
'customer.create',
                    
'customer.list',
                    
'customer.view',
                    
'customer.edit',
                    
'customer.delete',
                    
'customer.request',
                    
'customer.expired_subscription',
                    
                ]
            ],
            [
                
'group_name' => 'Domain',
                
'permissions' => [
                    
'domain.create',
                    
'domain.edit',
                    
'domain.list',
                    
'domain.delete',
                    
                ]
            ],
            [
                
'group_name' => 'Cron jobs',
                
'permissions' => [
                    
'cron_job.control',
                    
                ]
            ],
            [
                
'group_name' => 'menu',
                
'permissions' => [
                    
'menu',
                    
                ]
            ],
            [
                
'group_name' => 'Developer',
                
'permissions' => [
                    
'cron_job',
                    
'email_template.config',
                    
'template.upload',
                    
'template.delete',
                    
'template.list',
                    
'environment.settings',
                    
'payment_gateway.setup',
                    
                ]
            ],

            
            
            [
                
'group_name' => 'Settings',
                
'permissions' => [
                    
'site.settings'
                    
'marketing.tools',                  
                ]
            ],
            [
                
'group_name' => 'Seller Activity',
                
'permissions' => [
                    
'uploaded_files.control',                  
                    
'uploaded_files_directory.control',                  
                    
'product.control',                  
                    
'invoices.control',                  
                ]
            ],
            
            [
                
'group_name' => 'language',
                
'permissions' => [
                    
'language_edit',
                ]
            ]

        ];

        
//assign permission

        
foreach ($permissions as $key => $row) {


            foreach (
$row['permissions'] as $per) {
                
$permission Permission::create(['name' => $per'group_name' => $row['group_name']]);
                
$roleSuperAdmin->givePermissionTo($permission);
                
$permission->assignRole($roleSuperAdmin);
                
$super->assignRole($roleSuperAdmin);
            }
        }

        

        
$options = array(
  array(
'id' => '1','key' => 'langlist','value' => '{"English":"en","Bengali":"bn"}','created_at' => '2020-12-12 14:49:37','updated_at' => '2020-12-12 14:49:37'),
  array(
'id' => '2','key' => 'order_prefix','value' => 'AMC','created_at' => '2020-12-12 14:49:38','updated_at' => '2020-12-12 14:49:38'),
  array(
'id' => '3','key' => 'company_info','value' => '{"name":"Dokans","site_description":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s","email1":"email@email.com","email2":"email2@email.com","phone1":"+88012456789","phone2":"+88012456789","country":"bangladesh","zip_code":"1234","state":"Chattagram","city":"Chattagram","address":"Agrabad","facebook":"#","twitter":"#","linkedin":"#","instagram":"#","youtube":"#","site_color":"#42155c"}','created_at' => '2020-12-12 14:49:38','updated_at' => '2021-01-16 07:30:52'),
  array(
'id' => '4','key' => 'currency_info','value' => '{"currency_name":"USD","currency_icon":"$","currency_possition":"left"}','created_at' => '2020-12-12 14:49:38','updated_at' => '2020-12-12 14:49:38'),

  array(
'id' => '5','key' => 'cron_info','value' => '{"send_mail_to_will_expire_within_days":7,"alert_message":"i, your plan will expire soon.","expire_message":"our plan is expired!","trial_expired_message":"our free trial is expired!","auto_approve":"yes"}','created_at' => '2020-12-12 14:49:38','updated_at' => '2020-12-12 14:49:38'),

  array(
'id' => '6','key' => 'header','value' => '{"title":"SELL EVERYWHERE","highlight_title":"Increase your productivity","ytb_video":"75TGjNieK84","description":"Use one platform to sell products to anyone, anywhere\\u2014in person with Point of Sale and online through your website, social media, and online marketplaces.","preview":"uploads\\/1\\/2021\\/01\\/1610213945.webp"}','created_at' => '2020-12-18 17:14:36','updated_at' => '2021-01-09 18:05:30'),
  array(
'id' => '7','key' => 'faqs','value' => '{"description":"<h2>Site Audit<\\/h2>\\r\\n\\r\\n<p>Site Audit crawls all the pages it finds on your website &ndash; then provides an overall SEO health score, visualises key data in charts, flags all possible SEO issues and provides recommendations on how to fix them.<\\/p>\\r\\n\\r\\n<p>Have a huge website? Not an issue.<\\/p>\\r\\n\\r\\n<p><a href=\\"https:\\/\\/demos.creative-tim.com\\/impact-design-system\\/front\\/pages\\/about.html\\">Learn More&nbsp;<\\/a><\\/p>","preview":"uploads\\/1\\/2020\\/12\\/1608311802.svg"}','created_at' => '2020-12-18 17:16:42','updated_at' => '2020-12-18 17:19:03'),
  array(
'id' => '8','key' => 'marketing_tool','value' => '{"ga_measurement_id":"UA-180680025-1","analytics_view_id":"231381168","google_status":"on","fb_pixel":"","fb_pixel_status":""}','created_at' => '2020-12-25 17:32:48','updated_at' => '2020-12-25 17:32:48'),
  array(
'id' => '9','key' => 'languages','value' => '{"en":"English","bn":"Bangla","ar":"Arabic"}','created_at' => '2021-01-05 09:51:31','updated_at' => '2021-01-11 17:07:34'),
  array(
'id' => '10','key' => 'active_languages','value' => '{"en":"English","ar":"Arabic"}','created_at' => '2021-01-08 15:21:41','updated_at' => '2021-01-11 17:07:52'),
  array(
'id' => '11','key' => 'about_1','value' => '{"title":"Upload your product","description":"Enter the product along with other complete information such as photos, videos, variations, product descriptions, promotions and so on.","btn_link":"#priceing","btn_text":"Free Trial","preview":"icofont-cloud-upload"}','created_at' => '2021-01-09 18:51:25','updated_at' => '2021-01-16 06:22:49'),
  array(
'id' => '12','key' => 'about_2','value' => '{"title":"Setup your store","description":"Insert logo, banner and modify your store theme according to your own brand identity without having to create any code.","btn_link":"","btn_text":"","preview":"icofont-shopping-cart"}','created_at' => '2021-01-09 18:55:31','updated_at' => '2021-01-16 06:18:44'),
  array(
'id' => '13','key' => 'about_3','value' => '{"title":"The launch continues","description":"Easily, your online store goes live and you can validate your business and get market share faster than your other competitors.","btn_link":"","btn_text":"","preview":"icofont-rocket-alt-2"}','created_at' => '2021-01-09 18:56:22','updated_at' => '2021-01-16 06:56:08'),
  array(
'id' => '14','key' => 'seo','value' => '{"title":"Dokans","description":"test","canonical":"'.env('APP_URL').'","tags":"test","twitterTitle":"@dokans"}','created_at' => '2021-01-16 08:30:26','updated_at' => '2021-01-16 08:30:26'),
  array(
'id' => '15','key' => 'auto_order','value' => 'yes','created_at' => '2021-02-21 18:14:35','updated_at' => '2021-02-21 18:14:44'), 
  array(
'id' => '16','key' => 'ecom_features','value' => '{"top_image":"uploads\/1\/2021\/03\/1615392340.png","center_image":"uploads\/1\/2021\/03\/1615392340.webp","bottom_image":"uploads\/1\/2021\/03\/1615392340.webp","area_title":"Market your business","description":"Take the guesswork out of marketing with built-in tools that help you create, execute, and analyze digital marketing campaigns.","btn_link":"#service","btn_text":"Service"}','created_at' => '2021-02-21 18:14:35','updated_at' => '2021-02-21 18:14:44'),
  array(
'id' => '17','key' => 'counter_area','value' => '{"happy_customer":"1000","total_reviews":"800","total_domain":"1200","community_member":"2000"}','created_at' => '2021-02-21 18:14:35','updated_at' => '2021-02-21 18:14:44'),

  array(
'id' => '18','key' => 'instruction','created_at' => '2021-02-21 18:14:35','updated_at' => '2021-02-21 18:14:44''value' => '{"dns_configure_instruction":"You\'ll need to setup a DNS record to point to your store on our server. DNS records can be setup through your domain registrars control panel. Since every registrar has a different setup, contact them for assistance if you\'re unsure.","support_instruction":"DNS changes may take up to 48-72 hours to take effect, although it\'s normally a lot faster than that. You will receive a reply when your custom domain has been activated. Please allow 1-2 business days for this process to complete."}'),
  
  array(
'id' => 19'key'=>'tax','value'=>2,'created_at' => '2021-02-21 18:14:35','updated_at' => '2021-02-21 18:14:44'),
  array(
'id' => 20'key'=>'site_key','value'=>env('SITE_KEY'),'created_at' => now(),'updated_at' => '2021-02-21 18:14:44')
);

    
Option::insert($options);


        
$adminmenus = array(
  array(
'id' => '1','name' => 'Header','position' => 'header','data' => '[{"text":"Home","href":"/","icon":"","target":"_self","title":""},{"text":"Pricing","href":"/priceing","icon":"empty","target":"_self","title":""},{"text":"Services","href":"/service","icon":"empty","target":"_self","title":""},{"text":"Contact","href":"/contact","icon":"empty","target":"_self","title":""},{"text":"Login","href":"/login","icon":"empty","target":"_self","title":""}]','lang' => 'en','status' => '1','created_at' => '2021-01-08 15:21:55','updated_at' => '2021-01-11 17:08:42'),
  array(
'id' => '2','name' => 'Useful links','position' => 'footer_left','data' => '[{"text":"Academy","href":"/","icon":"","target":"_self","title":""},{"text":"Help","href":"/contact","icon":"empty","target":"_self","title":""},{"text":"Community","href":"/contact","icon":"empty","target":"_self","title":""},{"text":"Tools","href":"/contact","icon":"empty","target":"_self","title":""}]','lang' => 'en','status' => '1','created_at' => '2021-01-10 08:46:43','updated_at' => '2021-01-16 07:04:06'),
  array(
'id' => '3','name' => 'Policy','position' => 'footer_right','data' => '[{"text":"Policy","href":"/page/terms-and-condition","icon":"empty","target":"_self","title":""},{"text":"Service Policy","href":"/page/terms-and-condition","icon":"empty","target":"_self","title":""},{"text":"Refund Policy","href":"/page/terms-and-condition","icon":"empty","target":"_self","title":""}]','lang' => 'en','status' => '1','created_at' => '2021-01-10 08:58:24','updated_at' => '2021-01-16 07:09:59'),
  array(
'id' => '4','name' => 'Information','position' => 'footer_center','data' => '[{"text":"About Us","href":"#about_us","icon":"empty","target":"_self","title":""},{"text":"Partners Program","href":"/contact","icon":"empty","target":"_self","title":""},{"text":"Priceing","href":"#priceing","icon":"empty","target":"_self","title":""},{"text":"Payment gateway","href":"/contact","icon":"empty","target":"_self","title":""}]','lang' => 'en','status' => '1','created_at' => '2021-01-10 08:58:40','updated_at' => '2021-01-16 07:02:47'),
  array(
'id' => '5','name' => 'Header Arabic','position' => 'header','data' => '[{"text":"الصفحة الرئيسية","icon":"","href":"/","target":"_self","title":""},{"text":"التسعير","icon":"empty","href":"/priceing","target":"_self","title":""},{"text":"صالة عرض","icon":"empty","href":"/service","target":"_self","title":""},{"text":"اتصل","icon":"empty","href":"/contact","target":"_self","title":""},{"text":"تسجيل الدخول","icon":"empty","href":"/login","target":"_self","title":""}]','lang' => 'ar','status' => '1','created_at' => '2021-01-11 17:09:00','updated_at' => '2021-01-11 17:10:56'),
  array(
'id' => '6','name' => 'معلومات','position' => 'footer_center','data' => '[{"text":"معلومات عنا","icon":"","href":"#about_us","target":"_self","title":""},{"text":"برنامج الشركاء","icon":"empty","href":"/contact","target":"_self","title":""},{"text":"التسعير","icon":"empty","href":"#priceing","target":"_self","title":""},{"text":"بوابة الدفع","icon":"empty","href":"/contact","target":"_self","title":""}]','lang' => 'ar','status' => '1','created_at' => '2021-01-16 07:05:58','updated_at' => '2021-01-16 07:08:26'),
  array(
'id' => '7','name' => 'سياسات','position' => 'footer_right','data' => '[{"text":"سياسات","icon":"","href":"/page/terms-and-condition","target":"_self","title":""},{"text":"سياسة الخدمة","icon":"empty","href":"/page/terms-and-condition","target":"_self","title":""},{"text":"سياسة الاسترجاع","icon":"empty","href":"/page/terms-and-condition","target":"_self","title":""}]','lang' => 'ar','status' => '1','created_at' => '2021-01-16 07:06:18','updated_at' => '2021-01-16 07:10:29'),
  array(
'id' => '8','name' => 'روابط مفيدة','position' => 'footer_left','data' => '[{"text":"الأكاديمية","icon":"empty","href":"/","target":"_self","title":""},{"text":"مساعدة","icon":"empty","href":"/contact","target":"_self","title":""},{"text":"تواصل اجتماعي","icon":"empty","href":"/contact","target":"_self","title":""},{"text":"أدوات","icon":"empty","href":"/contact","target":"_self","title":""}]','lang' => 'ar','status' => '1','created_at' => '2021-01-16 07:06:35','updated_at' => '2021-01-16 07:24:25')
);

        
Adminmenu::insert($adminmenus);
    

   

    
$plans = array(
      array(
'id' => '1',
        
'name' => 'Free Trial',
        
'description' => 'free register',
        
'price' => '0',
        
'days' => '7',
        
'featured' => '0',
        
'status' => '1',
        
'data'=>json_encode(
            array(
                
'product_limit' => 21,
                
'storage' => 0,
                
'customer_limit' => 0,
                
'custom_domain' => false,
                
'inventory'=>false,
                
'pos'=>false,
                
'customer_panel'=>false,
                
'pwa'=>false,
                
'whatsapp'=>false,
                
'live_support'=>false,
                
'qr_code'=>false,
                
'facebook_pixel'=>false,
                
'custom_css'=>false,
                
'custom_js'=>false,
                
'gtm'=>false,
                
'location_limit'=>0,
                
'category_limit'=>0,
                
'brand_limit'=>0,
                
'variation_limit'=>0,
                
'google_analytics'=>false)),
        
'is_trial'=>1,
        
'created_at' => '2020-12-12 14:51:30',
        
'updated_at' => '2021-01-16 07:27:51'),

       array(
'id' => '2',
        
'name' => 'STARTER BUSINESS',
        
'description' => 'STARTER',
        
'price' => '250',
        
'days' => '30',
        
'featured' => '0',
        
'status' => '1',
        
'is_trial'=>0,
        
'data'=>json_encode(
            array(
                
'product_limit' => 100,
                
'storage' => 50,
                
'custom_domain' => true,
                
'customer_limit' => 0,
                
'inventory'=>true,
                
'pos'=>true,
                
'customer_panel'=>true,
                
'pwa'=>true,
                
'whatsapp'=>true,
                
'live_support'=>true,
                
'qr_code'=>true,
                
'facebook_pixel'=>true,
                
'custom_css'=>true,
                
'custom_js'=>true,
                
'gtm'=>true,
                
'location_limit'=>0,
                
'category_limit'=>0,
                
'brand_limit'=>0,
                
'variation_limit'=>0,
                
'google_analytics'=>true)),
        
'created_at' => '2020-12-12 14:51:30',
        
'updated_at' => '2021-01-16 07:27:51'),

         array(
'id' => '3',
        
'name' => 'ENTERPRISE',
        
'description' => 'FOR ENTERPRISE BUSINESS',
        
'price' => '400',
        
'days' => '385',
        
'featured' => '0',
        
'status' => '1',
        
'is_trial'=>0,
        
'data'=>json_encode(
            array(
                
'product_limit' => '100',
                
'customer_limit' => '100',
                
'storage' => '50',
                
'custom_domain' => true,
                
'inventory'=>true,
                
'pos'=>true,
                
'customer_panel'=>true,
                
'pwa'=>true,
                
'whatsapp'=>true,
                
'live_support'=>true,
                
'qr_code'=>true,
                
'facebook_pixel'=>true,
                
'custom_css'=>true,
                
'custom_js'=>true,
                
'gtm'=>true,
                
'location_limit'=>10,
                
'category_limit'=>10,
                
'brand_limit'=>10,
                
'variation_limit'=>10,
                
'google_analytics'=>true)),
        
'created_at' => '2020-12-12 14:51:30',
        
'updated_at' => '2021-01-16 07:27:51'),

       

    
//   array(
    //     'id' => '2',
    //     'name' => '',
    //     'description' => 'STARTER BUSINESS',
    //     'price' => '250',
    //     'days' => '30',
    //     'status' => '1',
    //     'data'=>json_encode(array(
    //     'product_limit' => '50',
    //     'storage' => '30',
    //     'custom_domain' => false,
    //     'inventory'=>false,
    //     'pos'=>false,
    //     'customer_panel'=>false,
    //     'pwa'=>false,
    //     'whatsapp'=>false,
    //     'live_support'=>false,
    //     'qr_code'=>false,
    //     'facebook_pixel'=>false,
    //     'custom_css'=>false,
    //     'custom_js'=>false,
    //     'gtm'=>false,
    //     'google_analytics'=>false
    //    )),'created_at' => '2020-12-12 14:51:30','updated_at' => '2021-01-16 07:27:51'),

    //   array('id' => '3','name' => '','description' => 'STARTER BUSINESS','price' => '500','days' => '365','featured' => '0','status' => '1','data'=>json_encode(array(
    //     'product_limit' => '100',
    //     'storage' => '50',
    //     'custom_domain' => true,
    //     'inventory'=>true,
    //     'pos'=>true,
    //     'customer_panel'=>true,
    //     'pwa'=>true,
    //     'whatsapp'=>true,
    //     'live_support'=>true,
    //     'qr_code'=>true,
    //     'facebook_pixel'=>true,
    //     'custom_css'=>true,
    //     'custom_js'=>true,
    //     'gtm'=>true,
    //     'google_analytics'=>true
    // )),'created_at' => '2020-12-12 14:51:30','updated_at' => '2021-01-16 07:27:51')

     
  
);
   
Plan::insert($plans);

  
//   $terms = array(
  //     array('id' => '34','title' => 'terms and condition','slug' => 'terms-and-condition','user_id' => '1','status' => '1','featured' => '0','type' => 'page','is_admin' => '1','created_at' => '2021-01-11 10:52:34','updated_at' => '2021-01-11 10:52:34')
  //   );

  //   Term::insert($terms);


  //   $metas = array(
  //     array('id' => '59','term_id' => '34','key' => 'excerpt','value' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960'),
  //     array('id' => '60','term_id' => '34','key' => 'content','value' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum')
  // );

  //   Meta::insert($metas);

}

}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0082 ]--