diff --git a/database/factories/ServerFactory.php b/database/factories/ServerFactory.php
index aad3ed1..c0895a4 100644
--- a/database/factories/ServerFactory.php
+++ b/database/factories/ServerFactory.php
@@ -7,18 +7,8 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class ServerFactory extends Factory
{
- /**
- * The name of the factory's corresponding model.
- *
- * @var string
- */
protected $model = Server::class;
- /**
- * Define the model's default state.
- *
- * @return array
- */
public function definition()
{
diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php
index 8008694..f031138 100644
--- a/database/factories/UserFactory.php
+++ b/database/factories/UserFactory.php
@@ -8,18 +8,8 @@ use Illuminate\Support\Str;
class UserFactory extends Factory
{
- /**
- * The name of the factory's corresponding model.
- *
- * @var string
- */
protected $model = User::class;
- /**
- * Define the model's default state.
- *
- * @return array
- */
public function definition()
{
return [
diff --git a/database/migrations/2021_02_10_122904_create_servers_table.php b/database/migrations/2021_02_10_122904_create_servers_table.php
index 5e4f896..85f7617 100644
--- a/database/migrations/2021_02_10_122904_create_servers_table.php
+++ b/database/migrations/2021_02_10_122904_create_servers_table.php
@@ -14,13 +14,12 @@ class CreateServersTable extends Migration
public function up()
{
Schema::create('servers', function (Blueprint $table) {
- $table->char('id', 8)->unique()->default(null);
+ $table->char('id', 8)->primary()->default(null);
$table->tinyInteger('active')->default(1);
+ $table->tinyInteger('show_public')->default(0);
$table->string('hostname');
$table->string('ns1')->nullable()->default(null);
$table->string('ns2')->nullable()->default(null);
- $table->string('ipv4')->nullable()->default(null);
- $table->string('ipv6')->nullable()->default(null);
$table->tinyInteger('server_type')->default(1);
$table->integer('os_id')->default(0);
$table->integer('provider_id')->default(9999);
diff --git a/database/migrations/2022_02_01_031629_create_os_table.php b/database/migrations/2022_02_01_031629_create_os_table.php
index 68d544f..2d6ea8d 100644
--- a/database/migrations/2022_02_01_031629_create_os_table.php
+++ b/database/migrations/2022_02_01_031629_create_os_table.php
@@ -16,6 +16,10 @@ class CreateOsTable extends Migration
Schema::create('os', function (Blueprint $table) {
$table->id()->autoIncrement();
$table->string('name')->unique();
+<<<<<<< HEAD
+=======
+ $table->timestamps();
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
});
}
diff --git a/database/migrations/2022_02_01_233932_create_domains_table.php b/database/migrations/2022_02_01_233932_create_domains_table.php
index 0537779..8a330de 100644
--- a/database/migrations/2022_02_01_233932_create_domains_table.php
+++ b/database/migrations/2022_02_01_233932_create_domains_table.php
@@ -14,7 +14,11 @@ class CreateDomainsTable extends Migration
public function up()
{
Schema::create('domains', function (Blueprint $table) {
+<<<<<<< HEAD
$table->char('id', 8)->unique()->default(null);
+=======
+ $table->char('id', 8)->primary()->default(null);
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
$table->string('domain');
$table->tinyInteger('active')->default(1);
$table->string('extension');
diff --git a/database/migrations/2022_02_03_035702_create_labels_table.php b/database/migrations/2022_02_03_035702_create_labels_table.php
index 270318b..faf0a77 100644
--- a/database/migrations/2022_02_03_035702_create_labels_table.php
+++ b/database/migrations/2022_02_03_035702_create_labels_table.php
@@ -15,7 +15,11 @@ class CreateLabelsTable extends Migration
{
Schema::create('labels', function (Blueprint $table) {
$table->char('id', 8)->primary()->default(null);
+<<<<<<< HEAD
$table->string('label');
+=======
+ $table->string('label')->unique();
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
$table->timestamps();
});
}
diff --git a/database/migrations/2022_02_03_040140_create_shareds_table.php b/database/migrations/2022_02_03_040140_create_shareds_table.php
index ca70310..d335210 100644
--- a/database/migrations/2022_02_03_040140_create_shareds_table.php
+++ b/database/migrations/2022_02_03_040140_create_shareds_table.php
@@ -14,11 +14,17 @@ class CreateSharedsTable extends Migration
public function up()
{
Schema::create('shared_hosting', function (Blueprint $table) {
+<<<<<<< HEAD
$table->char('id', 8)->unique();
$table->tinyInteger('active')->default(1);
$table->string('main_domain');
$table->tinyInteger('has_dedicated_ip')->default(0);
$table->string('ip')->nullable()->default(null);
+=======
+ $table->char('id', 8)->primary();
+ $table->tinyInteger('active')->default(1);
+ $table->string('main_domain');
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
$table->string('shared_type')->nullable();
$table->integer('provider_id')->default(9999);
$table->integer('location_id')->default(9999);
diff --git a/database/migrations/2022_02_03_040152_create_resellers_table.php b/database/migrations/2022_02_03_040152_create_resellers_table.php
index 6bc90c8..f37df1a 100644
--- a/database/migrations/2022_02_03_040152_create_resellers_table.php
+++ b/database/migrations/2022_02_03_040152_create_resellers_table.php
@@ -14,11 +14,17 @@ class CreateResellersTable extends Migration
public function up()
{
Schema::create('reseller_hosting', function (Blueprint $table) {
+<<<<<<< HEAD
$table->char('id', 8)->unique();
$table->tinyInteger('active')->default(1);
$table->string('main_domain');
$table->tinyInteger('has_dedicated_ip')->default(0);
$table->string('ip')->nullable()->default(null);
+=======
+ $table->char('id', 8)->primary();
+ $table->tinyInteger('active')->default(1);
+ $table->string('main_domain');
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
$table->integer('accounts')->default(1);
$table->string('reseller_type')->nullable();
$table->integer('provider_id')->default(9999);
diff --git a/database/migrations/2022_02_05_104355_create_yabs_table.php b/database/migrations/2022_02_05_104355_create_yabs_table.php
index 991d26b..d2b16c4 100644
--- a/database/migrations/2022_02_05_104355_create_yabs_table.php
+++ b/database/migrations/2022_02_05_104355_create_yabs_table.php
@@ -13,7 +13,11 @@ class CreateYabsTable extends Migration
public function up()
{
Schema::create('yabs', function (Blueprint $table) {
+<<<<<<< HEAD
$table->char('id', 8)->unique();
+=======
+ $table->char('id', 8)->primary();
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
$table->char('server_id', 8);
$table->boolean('has_ipv6')->default(false);
$table->boolean('aes')->default(false);
@@ -21,7 +25,11 @@ class CreateYabsTable extends Migration
$table->dateTime('output_date');
$table->tinyInteger('cpu_cores');
$table->float('cpu_freq');
+<<<<<<< HEAD
$table->string('cpu');
+=======
+ $table->string('cpu_model');
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
$table->float('ram');
$table->char('ram_type', 2);
$table->float('ram_mb');
@@ -32,6 +40,10 @@ class CreateYabsTable extends Migration
$table->integer('gb5_multi');
$table->integer('gb5_id');
$table->timestamps();
+<<<<<<< HEAD
+=======
+ $table->unique(['id','server_id'], 'uni');
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
});
}
diff --git a/database/migrations/2022_02_05_104551_create_disk_speed_table.php b/database/migrations/2022_02_05_104551_create_disk_speed_table.php
index fccaa4b..fa92f0d 100644
--- a/database/migrations/2022_02_05_104551_create_disk_speed_table.php
+++ b/database/migrations/2022_02_05_104551_create_disk_speed_table.php
@@ -12,7 +12,11 @@ class CreateDiskSpeedTable extends Migration
public function up()
{
Schema::create('disk_speed', function (Blueprint $table) {
+<<<<<<< HEAD
$table->char('id', 8)->unique();
+=======
+ $table->char('id', 8)->primary();
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
$table->char('server_id',8);
$table->float('d_4k');
$table->char('d_4k_type',4);
diff --git a/database/migrations/2022_02_05_104919_create_network_speed_table.php b/database/migrations/2022_02_05_104919_create_network_speed_table.php
index 73f2816..b331460 100644
--- a/database/migrations/2022_02_05_104919_create_network_speed_table.php
+++ b/database/migrations/2022_02_05_104919_create_network_speed_table.php
@@ -22,6 +22,10 @@ class CreateNetworkSpeedTable extends Migration
$table->char('receive_type', 4);
$table->float('receive_as_mbps');
$table->timestamps();
+<<<<<<< HEAD
+=======
+ $table->unique(['id','server_id', 'location'], 'uni');
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
});
}
diff --git a/database/migrations/2022_02_08_010323_create_labels_assigned_table.php b/database/migrations/2022_02_08_010323_create_labels_assigned_table.php
index 44b809b..f95c57e 100644
--- a/database/migrations/2022_02_08_010323_create_labels_assigned_table.php
+++ b/database/migrations/2022_02_08_010323_create_labels_assigned_table.php
@@ -14,8 +14,14 @@ class CreateLabelsAssignedTable extends Migration
public function up()
{
Schema::create('labels_assigned', function (Blueprint $table) {
+<<<<<<< HEAD
$table->char('label_id', 8)->unique();
$table->char('service_id', 8);
+=======
+ $table->char('label_id', 8);
+ $table->char('service_id', 8);
+ $table->unique(['label_id','service_id'], 'uni');
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
});
}
diff --git a/database/migrations/2022_02_09_032438_create_settings_table.php b/database/migrations/2022_02_09_032438_create_settings_table.php
index c9c219d..6d89a24 100644
--- a/database/migrations/2022_02_09_032438_create_settings_table.php
+++ b/database/migrations/2022_02_09_032438_create_settings_table.php
@@ -14,7 +14,7 @@ class CreateSettingsTable extends Migration
public function up()
{
Schema::create('settings', function (Blueprint $table) {
- $table->integer('id')->default(1)->unique();
+ $table->integer('id')->default(1)->primary();
$table->boolean('show_versions_footer')->default(true);
$table->boolean('show_servers_public')->default(false);
$table->boolean('show_server_value_ip')->default(false);
diff --git a/database/migrations/2022_02_11_022150_create_miscs_table.php b/database/migrations/2022_02_11_022150_create_miscs_table.php
index 38fea19..2e02a0f 100644
--- a/database/migrations/2022_02_11_022150_create_miscs_table.php
+++ b/database/migrations/2022_02_11_022150_create_miscs_table.php
@@ -14,10 +14,17 @@ class CreateMiscsTable extends Migration
public function up()
{
Schema::create('misc_services', function (Blueprint $table) {
+<<<<<<< HEAD
$table->char('id', 8)->unique();
$table->string('name');
$table->tinyInteger('active')->default(1);
$table->date('owned_since');
+=======
+ $table->char('id', 8)->primary();
+ $table->string('name');
+ $table->tinyInteger('active')->default(1);
+ $table->date('owned_since')->nullable();
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
$table->timestamps();
});
}
@@ -31,4 +38,8 @@ class CreateMiscsTable extends Migration
{
Schema::dropIfExists('misc_services');
}
+<<<<<<< HEAD
};
+=======
+}
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
diff --git a/database/migrations/2022_02_21_001233_create_ips_table.php b/database/migrations/2022_02_21_001233_create_ips_table.php
new file mode 100644
index 0000000..42cc93b
--- /dev/null
+++ b/database/migrations/2022_02_21_001233_create_ips_table.php
@@ -0,0 +1,26 @@
+char('id', 8)->primary();
+ $table->char('service_id', 8);
+ $table->string('address');
+ $table->tinyInteger('is_ipv4')->default(1);
+ $table->tinyInteger('active')->default(1);
+ $table->timestamps();
+ $table->unique(['service_id','address'], 'uni');
+ });
+ }
+
+ public function down()
+ {
+ Schema::dropIfExists('ips');
+ }
+}
diff --git a/database/migrations/2022_03_05_125635_add_cols_to_settings.php b/database/migrations/2022_03_05_125635_add_cols_to_settings.php
new file mode 100644
index 0000000..3d746a5
--- /dev/null
+++ b/database/migrations/2022_03_05_125635_add_cols_to_settings.php
@@ -0,0 +1,30 @@
+string('default_currency')->default('USD');
+ $table->integer('default_server_os')->default(20);
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ }
+};
diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php
index 81fb0a4..18a8782 100644
--- a/database/seeders/DatabaseSeeder.php
+++ b/database/seeders/DatabaseSeeder.php
@@ -6,6 +6,7 @@ use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
+<<<<<<< HEAD
/**
* Seed the application's database.
*
@@ -16,12 +17,23 @@ class DatabaseSeeder extends Seeder
\App\Models\User::factory(1)->create();
//\App\Models\Server::factory(10)->create();
//\App\Models\Domains::factory(4)->create();
+=======
+ public function run()
+ {
+ //\App\Models\User::factory(1)->create();//Disable demo first user creation
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
$this->call(SettingsSeeder::class);
$this->call(ProvidersSeeder::class);
$this->call(LocationsSeeder::class);
$this->call(OsSeeder::class);
$this->call(LabelsSeeder::class);
+<<<<<<< HEAD
$this->call(DomainsSeeder::class);
$this->call(ServersSeeder::class);
+=======
+ //$this->call(DomainsSeeder::class);
+ //$this->call(ServersSeeder::class);
+ //$this->call(SharedSeeder::class);
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
}
}
diff --git a/database/seeders/DomainsSeeder.php b/database/seeders/DomainsSeeder.php
index c55eeec..a654dd6 100644
--- a/database/seeders/DomainsSeeder.php
+++ b/database/seeders/DomainsSeeder.php
@@ -9,11 +9,14 @@ use Illuminate\Support\Str;
class DomainsSeeder extends Seeder
{
+<<<<<<< HEAD
/**
* Run the database seeds.
*
* @return void
*/
+=======
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
public function run()
{
$id1 = Str::random(8);
@@ -26,7 +29,11 @@ class DomainsSeeder extends Seeder
"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,
@@ -34,7 +41,11 @@ class DomainsSeeder extends Seeder
"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
]
];
diff --git a/database/seeders/LabelsSeeder.php b/database/seeders/LabelsSeeder.php
index 85c182a..e9d79ea 100644
--- a/database/seeders/LabelsSeeder.php
+++ b/database/seeders/LabelsSeeder.php
@@ -8,11 +8,14 @@ use Illuminate\Support\Str;
class LabelsSeeder extends Seeder
{
+<<<<<<< HEAD
/**
* Run the database seeds.
*
* @return void
*/
+=======
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
public function run()
{
$os = [
diff --git a/database/seeders/LocationsSeeder.php b/database/seeders/LocationsSeeder.php
index 0d1cd74..399624e 100644
--- a/database/seeders/LocationsSeeder.php
+++ b/database/seeders/LocationsSeeder.php
@@ -7,11 +7,14 @@ use Illuminate\Support\Facades\DB;
class LocationsSeeder extends Seeder
{
+<<<<<<< HEAD
/**
* Run the database seeds.
*
* @return void
*/
+=======
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
public function run()
{
$locations = array(
diff --git a/database/seeders/OsSeeder.php b/database/seeders/OsSeeder.php
index e5de5cc..f07a9cc 100644
--- a/database/seeders/OsSeeder.php
+++ b/database/seeders/OsSeeder.php
@@ -2,11 +2,16 @@
namespace Database\Seeders;
+<<<<<<< HEAD
+=======
+use Carbon\Carbon;
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class OsSeeder extends Seeder
{
+<<<<<<< HEAD
/**
* Run the database seeds.
*
@@ -43,6 +48,39 @@ class OsSeeder extends Seeder
["name" => "Windows 10"],
["name" => "Custom"],
["name" => "Other"]
+=======
+ public function run()
+ {
+ $os = [
+ ["name" => "None", "created_at" => Carbon::now()],
+ ["name" => "Centos 7", "created_at" => Carbon::now()],
+ ["name" => "Centos 8", "created_at" => Carbon::now()],
+ ["name" => "Centos", "created_at" => Carbon::now()],
+ ["name" => "Debian 9", "created_at" => Carbon::now()],
+ ["name" => "Debian 10", "created_at" => Carbon::now()],
+ ["name" => "Debian", "created_at" => Carbon::now()],
+ ["name" => "Fedora 32", "created_at" => Carbon::now()],
+ ["name" => "Fedora 33", "created_at" => Carbon::now()],
+ ["name" => "Fedora", "created_at" => Carbon::now()],
+ ["name" => "FreeBSD 11.4", "created_at" => Carbon::now()],
+ ["name" => "FreeBSD 12.1", "created_at" => Carbon::now()],
+ ["name" => "FreeBSD", "created_at" => Carbon::now()],
+ ["name" => "OpenBSD 6.7", "created_at" => Carbon::now()],
+ ["name" => "OpenBSD 6.8", "created_at" => Carbon::now()],
+ ["name" => "OpenBSD", "created_at" => Carbon::now()],
+ ["name" => "Ubuntu 16.04", "created_at" => Carbon::now()],
+ ["name" => "Ubuntu 18.04", "created_at" => Carbon::now()],
+ ["name" => "Ubuntu 20.04", "created_at" => Carbon::now()],
+ ["name" => "Ubuntu 20.10", "created_at" => Carbon::now()],
+ ["name" => "Ubuntu", "created_at" => Carbon::now()],
+ ["name" => "Windows Server 2008", "created_at" => Carbon::now()],
+ ["name" => "Windows Server 2012", "created_at" => Carbon::now()],
+ ["name" => "Windows Server 2016", "created_at" => Carbon::now()],
+ ["name" => "Windows Server 2019", "created_at" => Carbon::now()],
+ ["name" => "Windows 10", "created_at" => Carbon::now()],
+ ["name" => "Custom", "created_at" => Carbon::now()],
+ ["name" => "Other", "created_at" => Carbon::now()]
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
];
DB::table('os')->insert($os);
diff --git a/database/seeders/ProvidersSeeder.php b/database/seeders/ProvidersSeeder.php
index d8a51c2..b2b7277 100644
--- a/database/seeders/ProvidersSeeder.php
+++ b/database/seeders/ProvidersSeeder.php
@@ -9,11 +9,14 @@ use Illuminate\Support\Str;
class ProvidersSeeder extends Seeder
{
+<<<<<<< HEAD
/**
* Run the database seeds.
*
* @return void
*/
+=======
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
public function run()
{
diff --git a/database/seeders/ServersSeeder.php b/database/seeders/ServersSeeder.php
index d1266b9..a1d6ce0 100644
--- a/database/seeders/ServersSeeder.php
+++ b/database/seeders/ServersSeeder.php
@@ -9,11 +9,14 @@ use Illuminate\Support\Str;
class ServersSeeder extends Seeder
{
+<<<<<<< HEAD
/**
* Run the database seeds.
*
* @return void
*/
+=======
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
public function run()
{
$id1 = Str::random(8);
@@ -25,9 +28,14 @@ class ServersSeeder extends Seeder
"hostname" => "la.node.ai",
"os_id" => 20,
"provider_id" => 90,
+<<<<<<< HEAD
"location_id" => 34,
"bandwidth" => 1000,
"ipv4" => '127.0.0.1',
+=======
+ "location_id" => 35,
+ "bandwidth" => 1000,
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
"cpu" => 1,
"ram" => 512,
"ram_type" => 'MB',
@@ -44,9 +52,14 @@ class ServersSeeder extends Seeder
"hostname" => "sg.node.ai",
"os_id" => 20,
"provider_id" => 90,
+<<<<<<< HEAD
"location_id" => 70,
"bandwidth" => 2000,
"ipv4" => '127.0.0.1',
+=======
+ "location_id" => 71,
+ "bandwidth" => 2000,
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
"cpu" => 1,
"ram" => 2048,
"ram_type" => 'MB',
@@ -88,5 +101,29 @@ class ServersSeeder extends Seeder
];
DB::table('pricings')->insert($pricing);
+<<<<<<< HEAD
+=======
+
+ $ips = [
+ [
+ "id" => Str::random(8),
+ "service_id" => $id1,
+ "address" => '127.0.0.1',
+ "is_ipv4" => 1,
+ "active" => 1,
+ "created_at" => Carbon::now()
+ ],
+ [
+ "id" => Str::random(8),
+ "service_id" => $id2,
+ "address" => '127.0.0.1',
+ "is_ipv4" => 1,
+ "active" => 1,
+ "created_at" => Carbon::now()
+ ],
+ ];
+
+ DB::table('ips')->insert($ips);
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
}
}
diff --git a/database/seeders/SettingsSeeder.php b/database/seeders/SettingsSeeder.php
index e8414c3..491a850 100644
--- a/database/seeders/SettingsSeeder.php
+++ b/database/seeders/SettingsSeeder.php
@@ -8,11 +8,14 @@ use Illuminate\Support\Facades\DB;
class SettingsSeeder extends Seeder
{
+<<<<<<< HEAD
/**
* Run the database seeds.
*
* @return void
*/
+=======
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
public function run()
{
$settings = [
diff --git a/database/seeders/SharedSeeder.php b/database/seeders/SharedSeeder.php
index bf53936..734c301 100644
--- a/database/seeders/SharedSeeder.php
+++ b/database/seeders/SharedSeeder.php
@@ -9,6 +9,7 @@ use Illuminate\Support\Str;
class SharedSeeder extends Seeder
{
+<<<<<<< HEAD
/**
* Run the database seeds.
*
@@ -31,5 +32,54 @@ class SharedSeeder extends Seeder
];
DB::table('shareds')->insert($shared);*/
+=======
+ public function run()
+ {
+
+ $id = Str::random(8);
+
+ $shared = [
+ [
+ "id" => $id,
+ "active" => 1,
+ "main_domain" => "node.ai",
+ "shared_type" => "Direct Admin",
+ "bandwidth" => 3000,
+ "disk" => 45,
+ "disk_type" => 'GB',
+ "disk_as_gb" => 45,
+ "domains_limit" => 10,
+ "subdomains_limit" => 10,
+ "ftp_limit" => 5,
+ "email_limit" => 5,
+ "db_limit" => 2,
+ "provider_id" => 90,
+ "location_id" => 71,
+ "owned_since" => Carbon::now()->subDays(220),
+ "created_at" => Carbon::now(),
+ "updated_at" => Carbon::now(),
+ ]
+ ];
+
+ DB::table('shared_hosting')->insert($shared);
+
+ $pricing = [
+ [
+ "service_id" => $id,
+ "active" => 1,
+ "service_type" => 2,
+ "currency" => "USD",
+ "price" => 60.00,
+ "term" => 4,
+ "as_usd" => 60.00,
+ "usd_per_month" => 5.00,
+ "next_due_date" => Carbon::now()->addDays(12)->format('Y-m-d'),
+ "created_at" => Carbon::now(),
+ "updated_at" => Carbon::now(),
+ ]
+ ];
+
+ DB::table('pricings')->insert($pricing);
+>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
}
}
diff --git a/public/.htaccess b/public/.htaccess
new file mode 100644
index 0000000..3aec5e2
--- /dev/null
+++ b/public/.htaccess
@@ -0,0 +1,21 @@
+
+
+ Options -MultiViews -Indexes
+
+
+ RewriteEngine On
+
+ # Handle Authorization Header
+ RewriteCond %{HTTP:Authorization} .
+ RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
+
+ # Redirect Trailing Slashes If Not A Folder...
+ RewriteCond %{REQUEST_FILENAME} !-d
+ RewriteCond %{REQUEST_URI} (.+)/$
+ RewriteRule ^ %1 [L,R=301]
+
+ # Send Requests To Front Controller...
+ RewriteCond %{REQUEST_FILENAME} !-d
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [L]
+
diff --git a/public/css/app.css b/public/css/app.css
new file mode 100644
index 0000000..36aae37
Binary files /dev/null and b/public/css/app.css differ
diff --git a/public/css/bootstrap.min.css b/public/css/bootstrap.min.css
new file mode 100644
index 0000000..3a41517
Binary files /dev/null and b/public/css/bootstrap.min.css differ
diff --git a/public/css/datatables.bootstrap.min.css b/public/css/datatables.bootstrap.min.css
new file mode 100644
index 0000000..d4ed970
Binary files /dev/null and b/public/css/datatables.bootstrap.min.css differ
diff --git a/public/css/fa.min.css b/public/css/fa.min.css
new file mode 100644
index 0000000..dc98a1c
Binary files /dev/null and b/public/css/fa.min.css differ
diff --git a/public/favicon.ico b/public/favicon.ico
new file mode 100644
index 0000000..e69de29
diff --git a/public/index.php b/public/index.php
new file mode 100644
index 0000000..a8137b1
--- /dev/null
+++ b/public/index.php
@@ -0,0 +1,55 @@
+make(Kernel::class);
+
+$response = tap($kernel->handle(
+ $request = Request::capture()
+))->send();
+
+$kernel->terminate($request, $response);
diff --git a/public/js/addService.js b/public/js/addService.js
new file mode 100644
index 0000000..c7e4f08
Binary files /dev/null and b/public/js/addService.js differ
diff --git a/public/js/app.js b/public/js/app.js
new file mode 100644
index 0000000..56c33b1
Binary files /dev/null and b/public/js/app.js differ
diff --git a/public/js/axios.min.js b/public/js/axios.min.js
new file mode 100644
index 0000000..f7cd995
Binary files /dev/null and b/public/js/axios.min.js differ
diff --git a/public/js/bootstrap.min.js b/public/js/bootstrap.min.js
new file mode 100644
index 0000000..4e25e55
Binary files /dev/null and b/public/js/bootstrap.min.js differ
diff --git a/public/js/datatables.bootstrap5.min.js b/public/js/datatables.bootstrap5.min.js
new file mode 100644
index 0000000..ec4766b
Binary files /dev/null and b/public/js/datatables.bootstrap5.min.js differ
diff --git a/public/js/datatables.min.js b/public/js/datatables.min.js
new file mode 100644
index 0000000..303edd7
Binary files /dev/null and b/public/js/datatables.min.js differ
diff --git a/public/js/jquery.min.js b/public/js/jquery.min.js
new file mode 100644
index 0000000..c4c6022
Binary files /dev/null and b/public/js/jquery.min.js differ
diff --git a/public/js/vue.min.js b/public/js/vue.min.js
new file mode 100644
index 0000000..713c9a4
Binary files /dev/null and b/public/js/vue.min.js differ
diff --git a/public/mix-manifest.json b/public/mix-manifest.json
new file mode 100644
index 0000000..2d60117
--- /dev/null
+++ b/public/mix-manifest.json
@@ -0,0 +1,4 @@
+{
+ "/js/app.js": "/js/app.js",
+ "/css/app.css": "/css/app.css"
+}
diff --git a/public/robots.txt b/public/robots.txt
new file mode 100644
index 0000000..eb05362
--- /dev/null
+++ b/public/robots.txt
@@ -0,0 +1,2 @@
+User-agent: *
+Disallow:
diff --git a/public/web.config b/public/web.config
new file mode 100644
index 0000000..d3711d7
--- /dev/null
+++ b/public/web.config
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/webfonts/fa-brands-400.eot b/public/webfonts/fa-brands-400.eot
new file mode 100644
index 0000000..958684e
Binary files /dev/null and b/public/webfonts/fa-brands-400.eot differ
diff --git a/public/webfonts/fa-brands-400.svg b/public/webfonts/fa-brands-400.svg
new file mode 100644
index 0000000..2b7cf17
--- /dev/null
+++ b/public/webfonts/fa-brands-400.svg
@@ -0,0 +1,3717 @@
+
+
+
diff --git a/public/webfonts/fa-brands-400.ttf b/public/webfonts/fa-brands-400.ttf
new file mode 100644
index 0000000..f071825
Binary files /dev/null and b/public/webfonts/fa-brands-400.ttf differ
diff --git a/public/webfonts/fa-brands-400.woff b/public/webfonts/fa-brands-400.woff
new file mode 100644
index 0000000..277ab65
Binary files /dev/null and b/public/webfonts/fa-brands-400.woff differ
diff --git a/public/webfonts/fa-brands-400.woff2 b/public/webfonts/fa-brands-400.woff2
new file mode 100644
index 0000000..47805d4
Binary files /dev/null and b/public/webfonts/fa-brands-400.woff2 differ
diff --git a/public/webfonts/fa-solid-900.eot b/public/webfonts/fa-solid-900.eot
new file mode 100644
index 0000000..5da4fa0
Binary files /dev/null and b/public/webfonts/fa-solid-900.eot differ
diff --git a/public/webfonts/fa-solid-900.svg b/public/webfonts/fa-solid-900.svg
new file mode 100644
index 0000000..313b311
--- /dev/null
+++ b/public/webfonts/fa-solid-900.svg
@@ -0,0 +1,5028 @@
+
+
+
diff --git a/public/webfonts/fa-solid-900.ttf b/public/webfonts/fa-solid-900.ttf
new file mode 100644
index 0000000..e074608
Binary files /dev/null and b/public/webfonts/fa-solid-900.ttf differ
diff --git a/public/webfonts/fa-solid-900.woff b/public/webfonts/fa-solid-900.woff
new file mode 100644
index 0000000..ef6b447
Binary files /dev/null and b/public/webfonts/fa-solid-900.woff differ
diff --git a/public/webfonts/fa-solid-900.woff2 b/public/webfonts/fa-solid-900.woff2
new file mode 100644
index 0000000..120b300
Binary files /dev/null and b/public/webfonts/fa-solid-900.woff2 differ
diff --git a/public/yabsFromForm.txt b/public/yabsFromForm.txt
new file mode 100644
index 0000000..722c4e3
--- /dev/null
+++ b/public/yabsFromForm.txt
@@ -0,0 +1,63 @@
+# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
+# Yet-Another-Bench-Script #
+# v2021-12-28 #
+# https://github.com/masonr/yet-another-bench-script #
+# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
+
+Sat 05 Feb 2022 02:54:48 AM CET
+
+Basic System Information:
+---------------------------------
+Processor : AMD Ryzen 9 3900X 12-Core Processor
+CPU cores : 2 @ 3792.874 MHz
+AES-NI : ✔ Enabled
+VM-x/AMD-V : ✔ Enabled
+RAM : 3.8 GiB
+Swap : 0.0 KiB
+Disk : 39.3 GiB
+
+fio Disk Speed Tests (Mixed R/W 50/50):
+---------------------------------
+Block Size | 4k (IOPS) | 64k (IOPS)
+ ------ | --- ---- | ---- ----
+Read | 174.73 MB/s (43.6k) | 979.69 MB/s (15.3k)
+Write | 175.19 MB/s (43.7k) | 984.85 MB/s (15.3k)
+Total | 349.93 MB/s (87.4k) | 1.96 GB/s (30.6k)
+ | |
+Block Size | 512k (IOPS) | 1m (IOPS)
+ ------ | --- ---- | ---- ----
+Read | 571.27 MB/s (1.1k) | 590.50 MB/s (576)
+Write | 601.62 MB/s (1.1k) | 629.83 MB/s (615)
+Total | 1.17 GB/s (2.2k) | 1.22 GB/s (1.1k)
+
+iperf3 Network Speed Tests (IPv4):
+---------------------------------
+Provider | Location (Link) | Send Speed | Recv Speed
+ | | |
+Clouvider | London, UK (10G) | 709 Mbits/sec | 882 Mbits/sec
+Online.net | Paris, FR (10G) | 570 Mbits/sec | 786 Mbits/sec
+WorldStream | The Netherlands (10G) | 886 Mbits/sec | 933 Mbits/sec
+WebHorizon | Singapore (400M) | 278 Mbits/sec | 478 Mbits/sec
+Clouvider | NYC, NY, US (10G) | 260 Mbits/sec | 243 Mbits/sec
+Velocity Online | Tallahassee, FL, US (10G) | 227 Mbits/sec | 317 Mbits/sec
+Clouvider | Los Angeles, CA, US (10G) | 255 Mbits/sec | 288 Mbits/sec
+Iveloz Telecom | Sao Paulo, BR (2G) | 110 Mbits/sec | 281 Mbits/sec
+
+iperf3 Network Speed Tests (IPv6):
+---------------------------------
+Provider | Location (Link) | Send Speed | Recv Speed
+ | | |
+Clouvider | London, UK (10G) | 706 Mbits/sec | 854 Mbits/sec
+Online.net | Paris, FR (10G) | 591 Mbits/sec | 760 Mbits/sec
+WorldStream | The Netherlands (10G) | 867 Mbits/sec | 904 Mbits/sec
+WebHorizon | Singapore (400M) | 207 Mbits/sec | 502 Mbits/sec
+Clouvider | NYC, NY, US (10G) | 302 Mbits/sec | 201 Mbits/sec
+Clouvider | Los Angeles, CA, US (10G) | 169 Mbits/sec | 450 Mbits/sec
+
+Geekbench 5 Benchmark Test:
+---------------------------------
+Test | Value
+ |
+Single Core | 1276
+Multi Core | 2394
+Full Test | https://browser.geekbench.com/v5/cpu/12590829
\ No newline at end of file
diff --git a/resources/css/app.css b/resources/css/app.css
new file mode 100644
index 0000000..a31e444
--- /dev/null
+++ b/resources/css/app.css
@@ -0,0 +1,3 @@
+@import 'tailwindcss/base';
+@import 'tailwindcss/components';
+@import 'tailwindcss/utilities';
diff --git a/resources/js/app.js b/resources/js/app.js
new file mode 100644
index 0000000..dce37fc
--- /dev/null
+++ b/resources/js/app.js
@@ -0,0 +1,6 @@
+require('./bootstrap');
+import Alpine from 'alpinejs';
+
+window.Alpine = Alpine;
+
+Alpine.start();
diff --git a/resources/js/bootstrap.js b/resources/js/bootstrap.js
new file mode 100644
index 0000000..90b538e
--- /dev/null
+++ b/resources/js/bootstrap.js
@@ -0,0 +1,32 @@
+window._ = require('lodash');
+window.Vue = require('vue');
+try {
+ require('bootstrap');
+} catch (e) {}
+
+/**
+ * We'll load the axios HTTP library which allows us to easily issue requests
+ * to our Laravel back-end. This library automatically handles sending the
+ * CSRF token as a header based on the value of the "XSRF" token cookie.
+ */
+
+window.axios = require('axios');
+
+window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
+
+/**
+ * Echo exposes an expressive API for subscribing to channels and listening
+ * for events that are broadcast by Laravel. Echo and event broadcasting
+ * allows your team to easily build robust real-time web applications.
+ */
+
+// import Echo from 'laravel-echo';
+
+// window.Pusher = require('pusher-js');
+
+// window.Echo = new Echo({
+// broadcaster: 'pusher',
+// key: process.env.MIX_PUSHER_APP_KEY,
+// cluster: process.env.MIX_PUSHER_APP_CLUSTER,
+// forceTLS: true
+// });
diff --git a/resources/js/components/ExampleComponent.vue b/resources/js/components/ExampleComponent.vue
new file mode 100644
index 0000000..3fb9f9a
--- /dev/null
+++ b/resources/js/components/ExampleComponent.vue
@@ -0,0 +1,23 @@
+
+
+
+
+
+
Example Component
+
+
+ I'm an example component.
+
+
+
+
+
+
+
+
diff --git a/resources/lang/en/auth.php b/resources/lang/en/auth.php
new file mode 100644
index 0000000..6598e2c
--- /dev/null
+++ b/resources/lang/en/auth.php
@@ -0,0 +1,20 @@
+ 'These credentials do not match our records.',
+ 'password' => 'The provided password is incorrect.',
+ 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
+
+];
diff --git a/resources/lang/en/pagination.php b/resources/lang/en/pagination.php
new file mode 100644
index 0000000..d481411
--- /dev/null
+++ b/resources/lang/en/pagination.php
@@ -0,0 +1,19 @@
+ '« Previous',
+ 'next' => 'Next »',
+
+];
diff --git a/resources/lang/en/passwords.php b/resources/lang/en/passwords.php
new file mode 100644
index 0000000..2345a56
--- /dev/null
+++ b/resources/lang/en/passwords.php
@@ -0,0 +1,22 @@
+ 'Your password has been reset!',
+ 'sent' => 'We have emailed your password reset link!',
+ 'throttled' => 'Please wait before retrying.',
+ 'token' => 'This password reset token is invalid.',
+ 'user' => "We can't find a user with that email address.",
+
+];
diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php
new file mode 100644
index 0000000..c77e41c
--- /dev/null
+++ b/resources/lang/en/validation.php
@@ -0,0 +1,152 @@
+ 'The :attribute must be accepted.',
+ 'active_url' => 'The :attribute is not a valid URL.',
+ 'after' => 'The :attribute must be a date after :date.',
+ 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
+ 'alpha' => 'The :attribute may only contain letters.',
+ 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.',
+ 'alpha_num' => 'The :attribute may only contain letters and numbers.',
+ 'array' => 'The :attribute must be an array.',
+ 'before' => 'The :attribute must be a date before :date.',
+ 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
+ 'between' => [
+ 'numeric' => 'The :attribute must be between :min and :max.',
+ 'file' => 'The :attribute must be between :min and :max kilobytes.',
+ 'string' => 'The :attribute must be between :min and :max characters.',
+ 'array' => 'The :attribute must have between :min and :max items.',
+ ],
+ 'boolean' => 'The :attribute field must be true or false.',
+ 'confirmed' => 'The :attribute confirmation does not match.',
+ 'date' => 'The :attribute is not a valid date.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => 'The :attribute does not match the format :format.',
+ 'different' => 'The :attribute and :other must be different.',
+ 'digits' => 'The :attribute must be :digits digits.',
+ 'digits_between' => 'The :attribute must be between :min and :max digits.',
+ 'dimensions' => 'The :attribute has invalid image dimensions.',
+ 'distinct' => 'The :attribute field has a duplicate value.',
+ 'email' => 'The :attribute must be a valid email address.',
+ 'ends_with' => 'The :attribute must end with one of the following: :values.',
+ 'exists' => 'The selected :attribute is invalid.',
+ 'file' => 'The :attribute must be a file.',
+ 'filled' => 'The :attribute field must have a value.',
+ 'gt' => [
+ 'numeric' => 'The :attribute must be greater than :value.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
+ ],
+ 'gte' => [
+ 'numeric' => 'The :attribute must be greater than or equal :value.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
+ ],
+ 'image' => 'The :attribute must be an image.',
+ 'in' => 'The selected :attribute is invalid.',
+ 'in_array' => 'The :attribute field does not exist in :other.',
+ 'integer' => 'The :attribute must be an integer.',
+ 'ip' => 'The :attribute must be a valid IP address.',
+ 'ipv4' => 'The :attribute must be a valid IPv4 address.',
+ 'ipv6' => 'The :attribute must be a valid IPv6 address.',
+ 'json' => 'The :attribute must be a valid JSON string.',
+ 'lt' => [
+ 'numeric' => 'The :attribute must be less than :value.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
+ ],
+ 'lte' => [
+ 'numeric' => 'The :attribute must be less than or equal :value.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
+ ],
+ 'max' => [
+ 'numeric' => 'The :attribute may not be greater than :max.',
+ 'file' => 'The :attribute may not be greater than :max kilobytes.',
+ 'string' => 'The :attribute may not be greater than :max characters.',
+ 'array' => 'The :attribute may not have more than :max items.',
+ ],
+ 'mimes' => 'The :attribute must be a file of type: :values.',
+ 'mimetypes' => 'The :attribute must be a file of type: :values.',
+ 'min' => [
+ 'numeric' => 'The :attribute must be at least :min.',
+ 'file' => 'The :attribute must be at least :min kilobytes.',
+ 'string' => 'The :attribute must be at least :min characters.',
+ 'array' => 'The :attribute must have at least :min items.',
+ ],
+ 'multiple_of' => 'The :attribute must be a multiple of :value.',
+ 'not_in' => 'The selected :attribute is invalid.',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => 'The :attribute must be a number.',
+ 'password' => 'The password is incorrect.',
+ 'present' => 'The :attribute field must be present.',
+ 'regex' => 'The :attribute format is invalid.',
+ 'required' => 'The :attribute field is required.',
+ 'required_if' => 'The :attribute field is required when :other is :value.',
+ 'required_unless' => 'The :attribute field is required unless :other is in :values.',
+ 'required_with' => 'The :attribute field is required when :values is present.',
+ 'required_with_all' => 'The :attribute field is required when :values are present.',
+ 'required_without' => 'The :attribute field is required when :values is not present.',
+ 'required_without_all' => 'The :attribute field is required when none of :values are present.',
+ 'same' => 'The :attribute and :other must match.',
+ 'size' => [
+ 'numeric' => 'The :attribute must be :size.',
+ 'file' => 'The :attribute must be :size kilobytes.',
+ 'string' => 'The :attribute must be :size characters.',
+ 'array' => 'The :attribute must contain :size items.',
+ ],
+ 'starts_with' => 'The :attribute must start with one of the following: :values.',
+ 'string' => 'The :attribute must be a string.',
+ 'timezone' => 'The :attribute must be a valid zone.',
+ 'unique' => 'The :attribute has already been taken.',
+ 'uploaded' => 'The :attribute failed to upload.',
+ 'url' => 'The :attribute format is invalid.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Custom Validation Language Lines
+ |--------------------------------------------------------------------------
+ |
+ | Here you may specify custom validation messages for attributes using the
+ | convention "attribute.rule" to name the lines. This makes it quick to
+ | specify a specific custom language line for a given attribute rule.
+ |
+ */
+
+ 'custom' => [
+ 'attribute-name' => [
+ 'rule-name' => 'custom-message',
+ ],
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Custom Validation Attributes
+ |--------------------------------------------------------------------------
+ |
+ | The following language lines are used to swap our attribute placeholder
+ | with something more reader friendly such as "E-Mail Address" instead
+ | of "email". This simply helps us make our message more expressive.
+ |
+ */
+
+ 'attributes' => [],
+
+];
diff --git a/resources/sass/_variables.scss b/resources/sass/_variables.scss
new file mode 100644
index 0000000..172daaa
--- /dev/null
+++ b/resources/sass/_variables.scss
@@ -0,0 +1,7 @@
+// Body
+$body-bg: #f8fafc;
+
+// Typography
+$font-family-sans-serif: 'Nunito', sans-serif;
+$font-size-base: 0.9rem;
+$line-height-base: 1.6;
diff --git a/resources/sass/app.scss b/resources/sass/app.scss
new file mode 100644
index 0000000..3193ffa
--- /dev/null
+++ b/resources/sass/app.scss
@@ -0,0 +1,8 @@
+// Fonts
+@import url('https://fonts.googleapis.com/css?family=Nunito');
+
+// Variables
+@import 'variables';
+
+// Bootstrap
+@import '~bootstrap/scss/bootstrap';
diff --git a/resources/views/account/index.blade.php b/resources/views/account/index.blade.php
new file mode 100644
index 0000000..55a3f57
--- /dev/null
+++ b/resources/views/account/index.blade.php
@@ -0,0 +1,55 @@
+@section('title') {{'Edit account'}} @endsection
+
+
+ Edit account
+
+
+
+ {{ __('Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.') }}
+
+ {{ __('Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you didn\'t receive the email, we will gladly send you another.') }}
+
diff --git a/resources/views/components/number-input.blade.php b/resources/views/components/number-input.blade.php
new file mode 100644
index 0000000..aad5c5d
--- /dev/null
+++ b/resources/views/components/number-input.blade.php
@@ -0,0 +1,5 @@
+
+
{{$title}}
+
+
diff --git a/resources/views/components/os-select.blade.php b/resources/views/components/os-select.blade.php
new file mode 100644
index 0000000..09749ad
--- /dev/null
+++ b/resources/views/components/os-select.blade.php
@@ -0,0 +1,10 @@
+
+
{{ $title ??'OS'}}
+
+
diff --git a/resources/views/components/pricing-select.blade.php b/resources/views/components/pricing-select.blade.php
new file mode 100644
index 0000000..f08cf3c
--- /dev/null
+++ b/resources/views/components/pricing-select.blade.php
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/resources/views/components/providers-select.blade.php b/resources/views/components/providers-select.blade.php
new file mode 100644
index 0000000..ebf8bd2
--- /dev/null
+++ b/resources/views/components/providers-select.blade.php
@@ -0,0 +1,10 @@
+
+
{{ $title ??'Provider'}}
+
+
diff --git a/resources/views/components/ram-type-select.blade.php b/resources/views/components/ram-type-select.blade.php
new file mode 100644
index 0000000..a07e069
--- /dev/null
+++ b/resources/views/components/ram-type-select.blade.php
@@ -0,0 +1,6 @@
+
+ Laravel has wonderful, thorough documentation covering every aspect of the framework. Whether you are new to the framework or have previous experience with Laravel, we recommend reading all of the documentation from beginning to end.
+
+ Laracasts offers thousands of video tutorials on Laravel, PHP, and JavaScript development. Check them out, see for yourself, and massively level up your development skills in the process.
+
+ Laravel News is a community driven portal and newsletter aggregating all of the latest and most important news in the Laravel ecosystem, including new package releases and tutorials.
+
+
+
+
+
+
+
+
Vibrant Ecosystem
+
+
+
+
+ Laravel's robust library of first-party tools and libraries, such as Forge, Vapor, Nova, and Envoyer help you take your projects to the next level. Pair them with powerful open source libraries like Cashier, Dusk, Echo, Horizon, Sanctum, Telescope, and more.
+