Seeding changes

This commit is contained in:
AVMG20 2021-06-10 17:41:47 +02:00
parent 0a7e000550
commit bdbf1fc77a
3 changed files with 43 additions and 25 deletions

View file

@ -22,31 +22,6 @@ class CreateUsefulLinksTable extends Migration
$table->string('message')->default('Default Message');
$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)'
]);
}
/**

View file

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

View file

@ -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)'
]);
}
}