my-idlers/database/seeders/DomainsSeeder.php
cp6 d13e170f22 V2 (Laravel re-make)
V2 (Laravel re-make)
2022-03-06 02:22:16 +11:00

83 lines
2.2 KiB
PHP

<?php
namespace Database\Seeders;
use Carbon\Carbon;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Str;
class DomainsSeeder extends Seeder
{
<<<<<<< HEAD
/**
* Run the database seeds.
*
* @return void
*/
=======
>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
public function run()
{
$id1 = Str::random(8);
$id2 = Str::random(8);
$domains = [
[
"id" => $id1,
"domain" => "node",
"extension" => "ai",
"provider_id" => 59,
"owned_since" => '2013-01-12',
<<<<<<< HEAD
//"next_due_date" => Carbon::now()->addDays(30)->format('Y-m-d')
=======
"created_at" => Carbon::now()
>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
],
[
"id" => $id2,
"domain" => "cpu",
"extension" => "club",
"provider_id" => 59,
"owned_since" => '2016-04-25',
<<<<<<< HEAD
//"next_due_date" => Carbon::now()->addDays(30)->format('Y-m-d')
=======
"created_at" => Carbon::now()
>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
]
];
DB::table('domains')->insert($domains);
$pricing = [
[
"service_id" => $id1,
"service_type" => 4,
"currency" => "USD",
"price" => 9.99,
"term" => 4,
"as_usd" => 9.99,
"usd_per_month" => 0.83,
"next_due_date" => Carbon::now()->addDays(30)->format('Y-m-d'),
"created_at" => Carbon::now()
],
[
"service_id" => $id2,
"service_type" => 4,
"currency" => "USD",
"price" => 9.99,
"term" => 4,
"as_usd" => 9.99,
"usd_per_month" => 0.83,
"next_due_date" => Carbon::now()->addDays(30)->format('Y-m-d'),
"created_at" => Carbon::now()
],
];
DB::table('pricings')->insert($pricing);
}
}