⚝
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 :
DemoQuotationsTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; class DemoQuotationsTableSeeder extends Seeder { /** * Auto generated seed file * * @return void */ public function run() { \DB::table('quotations')->delete(); \DB::table('quotations')->insert([ 0 => [ 'id' => 1, 'quotation_no' => '1', 'slug' => '626d32f19370e', 'reference' => 'Reference-001', 'transport' => null, 'discount_type' => 0, 'discount' => null, 'total_tax' => 1872.5, 'sub_total' => 18725.0, 'po_reference' => null, 'payment_terms' => null, 'delivery_place' => 'Dhaka, Bangladesh', 'quotation_date' => now(), 'note' => 'This is a note!', 'status' => 1, 'created_at' => now(), 'updated_at' => now(), 'client_id' => 5, 'tax_id' => 2, 'created_by' => 1, ], ]); } }