浏览代码

Seeding changes

AVMG20 4 年之前
父节点
当前提交
bdbf1fc77a

+ 0 - 25
database/migrations/2021_06_09_213306_create_useful_links_table.php

@@ -22,31 +22,6 @@ class CreateUsefulLinksTable extends Migration
             $table->string('message')->default('Default Message');
             $table->string('message')->default('Default Message');
             $table->timestamps();
             $table->timestamps();
         });
         });
-
-        \App\Models\UsefulLink::create([
-            'icon' => 'fas fa-egg',
-            'title' => 'Pterodactyl Panel',
-            'link' => env('PTERODACTYL_URL' , 'http://localhost'),
-            'message' => 'Use your servers on our pterodactyl panel <small>(You can use the same login details)</small>'
-        ]);
-        \App\Models\UsefulLink::create([
-            'icon' => 'fas fa-database',
-            'title' => 'phpMyAdmin',
-            'link' => env('PHPMYADMIN_URL' , 'http://localhost'),
-            'message' => 'View your database online using phpMyAdmin'
-        ]);
-        \App\Models\UsefulLink::create([
-            'icon' => 'fab fa-discord',
-            'title' => 'Discord',
-            'link' => env('DISCORD_INVITE_URL'),
-            'message' => 'Need a helping hand? Want to chat? Got any questions? Join our discord!'
-        ]);
-        \App\Models\UsefulLink::create([
-            'icon' => 'fas fa-link',
-            'title' => 'Useful Links',
-            'link' => '_blank',
-            'message' => 'Want to make your own links that show here? Use the command <code>php artisan create:usefullink</code></br> Delete links via database (for now)'
-        ]);
     }
     }
 
 
     /**
     /**

+ 1 - 0
database/seeders/ExampleItemsSeeder.php

@@ -17,6 +17,7 @@ class ExampleItemsSeeder extends Seeder
             ProductSeeder::class,
             ProductSeeder::class,
             PaypalProductSeeder::class,
             PaypalProductSeeder::class,
             ApplicationApiSeeder::class,
             ApplicationApiSeeder::class,
+            UsefulLinksSeeder::class
         ]);
         ]);
 
 
     }
     }

+ 42 - 0
database/seeders/UsefulLinksSeeder.php

@@ -0,0 +1,42 @@
+<?php
+
+namespace Database\Seeders;
+
+use App\Models\UsefulLink;
+use Illuminate\Database\Seeder;
+
+class UsefulLinksSeeder extends Seeder
+{
+    /**
+     * Run the database seeds.
+     *
+     * @return void
+     */
+    public function run()
+    {
+        UsefulLink::create([
+            'icon' => 'fas fa-egg',
+            'title' => 'Pterodactyl Panel',
+            'link' => env('PTERODACTYL_URL', 'http://localhost'),
+            'message' => 'Use your servers on our pterodactyl panel <small>(You can use the same login details)</small>'
+        ]);
+        UsefulLink::create([
+            'icon' => 'fas fa-database',
+            'title' => 'phpMyAdmin',
+            'link' => env('PHPMYADMIN_URL', 'http://localhost'),
+            'message' => 'View your database online using phpMyAdmin'
+        ]);
+        UsefulLink::create([
+            'icon' => 'fab fa-discord',
+            'title' => 'Discord',
+            'link' => env('DISCORD_INVITE_URL'),
+            'message' => 'Need a helping hand? Want to chat? Got any questions? Join our discord!'
+        ]);
+        UsefulLink::create([
+            'icon' => 'fas fa-link',
+            'title' => 'Useful Links',
+            'link' => '_blank',
+            'message' => 'Want to make your own links that show here? Use the command <code>php artisan create:usefullink</code></br> Delete links via database (for now)'
+        ]);
+    }
+}