MOON
Server: Apache
System: Linux e2e-78-16.ssdcloudindia.net 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
User: imensosw (1005)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/imensosw/.trash/database.1/seeds/UsersTableSeeder.php
<?php

use Illuminate\Database\Seeder;

class UsersTableSeeder extends Seeder
{

    /**
     * Auto generated seed file
     *
     * @return void
     */
    public function run()
    {
        

        \DB::table('users')->delete();
        
        \DB::table('users')->insert(array (
            0 => 
            array (
                'id' => 1,
                'name' => 'Admin',
                'email' => 'admin@gmail.com',
                'email_verified_at' => '2020-10-14 00:00:00',
                'password' => '$2y$10$CMRdLXby97poHQbmSUA4hO1wUu2qfxD2T97UBDtAzahBS2yqWAw0e',
                'remember_token' => NULL,
                'role' => 1,
                'fname' => 'admin',
                'lname' => 'admin',
                'mobile_country_code_id' => 1,
                'mobile_no' => '1234567890',
                'whatup_country_code_id' => NULL,
                'whatup_no' => '',
                'avatar' => NULL,
                'status_id' => 1,
                'created_at' => '2020-09-17 11:27:43',
                'updated_at' => '2020-09-17 11:28:56',
            )
        ));
        
        
    }
}