⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
database
/
seeders
/
View File Name :
DemoSuppliersTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; class DemoSuppliersTableSeeder extends Seeder { /** * Auto generated seed file * * @return void */ public function run() { \DB::table('suppliers')->delete(); \DB::table('suppliers')->insert([ 0 => [ 'id' => 1, 'name' => 'Yvonne Melendez', 'slug' => 'yvonne-melendez', 'supplier_id' => '1', 'email' => 'novuty@mailinator.com', 'phone' => '+1 (654) 921-9435', 'company_name' => 'Newton Traders', 'address' => 'Et deleniti alias do', 'status' => 1, 'image_path' => 'avatar.png', 'created_at' => now(), 'updated_at' => now(), ], 1 => [ 'id' => 2, 'name' => 'Carla Bender', 'slug' => 'carla-bender', 'supplier_id' => '2', 'email' => 'xabexived@mailinator.com', 'phone' => '+1 (546) 502-6344', 'company_name' => 'Richardson Inc', 'address' => 'Eos perferendis aut', 'status' => 1, 'image_path' => 'avatar.png', 'created_at' => now(), 'updated_at' => now(), ], 2 => [ 'id' => 3, 'name' => 'Quyn Erickson', 'slug' => 'quyn-erickson', 'supplier_id' => '3', 'email' => 'qihykiwos@mailinator.com', 'phone' => '+1 (951) 281-5524', 'company_name' => 'Johns & Mcneil Co', 'address' => 'Reprehenderit et lib', 'status' => 1, 'image_path' => 'avatar.png', 'created_at' => now(), 'updated_at' => now(), ], 3 => [ 'id' => 4, 'name' => 'Amir Vega', 'slug' => 'amir-vega', 'supplier_id' => '4', 'email' => 'birevagiv@mailinator.com', 'phone' => '+1 (115) 102-4307', 'company_name' => 'Huber Associates', 'address' => 'Omnis adipisicing od', 'status' => 1, 'image_path' => 'avatar.png', 'created_at' => now(), 'updated_at' => now(), ], 4 => [ 'id' => 5, 'name' => 'Jemima Hoffman', 'slug' => 'jemima-hoffman', 'supplier_id' => '5', 'email' => 'hafyryhica@mailinator.com', 'phone' => '+1 (403) 725-6412', 'company_name' => 'Lawrence Plc', 'address' => 'Voluptatibus esse ex', 'status' => 1, 'image_path' => 'avatar.png', 'created_at' => now(), 'updated_at' => now(), ], ]); } }