id(); $table->string('icon')->default(''); $table->string('title')->default('Default Title'); $table->string('link')->default('https://bitsec.dev'); $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 (You can use the same login details)' ]); \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 php artisan create:usefullink
Delete links via database (for now)' ]); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('useful_links'); } }