ctrlpanel/database/seeders/Seeds/UsefulLinksSeeder.php
2021-06-22 17:13:24 +02:00

37 lines
1.1 KiB
PHP

<?php
namespace Database\Seeders\Seeds;
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'),
'description' => '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'),
'description' => 'View your database online using phpMyAdmin'
]);
UsefulLink::create([
'icon' => 'fab fa-discord',
'title' => 'Discord',
'link' => env('DISCORD_INVITE_URL' , 'https://discord.gg/4Y6HjD2uyU'),
'description' => 'Need a helping hand? Want to chat? Got any questions? Join our discord!'
]);
}
}