2021-04-16 01:00:00 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Database\Seeders;
|
|
|
|
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
|
|
|
|
use App\Models\Page;
|
|
|
|
|
|
|
|
class PageSeeder extends Seeder
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the database seeds.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function run()
|
|
|
|
{
|
|
|
|
$page = [
|
|
|
|
[
|
|
|
|
'terms' => '
|
|
|
|
Users who submit racist, violent and phishing links will be blocked and their links will be removed.
|
|
|
|
',
|
|
|
|
|
|
|
|
'privacy' => '
|
|
|
|
The code is open source and you can see it in GitHub, we do not collect any other information such as IP and location except email and links.
|
|
|
|
',
|
|
|
|
|
|
|
|
'contact' => '
|
2022-03-17 17:33:37 +01:00
|
|
|
Send your suggestions and criticisms to info@littlelink-custom.com
|
2021-04-16 01:00:00 +02:00
|
|
|
',
|
|
|
|
|
|
|
|
'home_message' => '
|
2022-02-22 10:31:23 +01:00
|
|
|
LittleLink Custom is a fork of LittleLink admin
|
|
|
|
with a set goal of making the admin panel easier to use and setup,
|
|
|
|
for inexperienced and first-time users, with the addition of many custom features
|
|
|
|
themed around customization for the individual users, LittleLink pages.
|
2021-04-16 01:00:00 +02:00
|
|
|
',
|
|
|
|
|
2022-02-23 20:19:15 +01:00
|
|
|
'register' => 'true',
|
2021-04-16 01:00:00 +02:00
|
|
|
]
|
|
|
|
];
|
|
|
|
|
|
|
|
Page::insert($page);
|
|
|
|
}
|
|
|
|
}
|