w0bm.com v1.5z FULL.RETARD.BUILD.BUT.STILL.WORKS

This commit is contained in:
noxy
2019-08-26 16:58:26 +00:00
commit da71b95aa2
517 changed files with 143236 additions and 0 deletions

View File

@@ -0,0 +1,64 @@
<?php
use Illuminate\Database\Seeder;
use App\Models\Category;
class CategorySeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Category::create([
'name' => 'Musicvideos',
'shortname' => 'mv',
'description' => 'WebMs containing music'
]);
Category::create([
'name' => 'Anime',
'shortname' => 'anime',
'description' => 'Everything from AMV to Hentai'
]);
Category::create([
'name' => 'Russia',
'shortname' => 'russia',
'description' => 'Сука Блять'
]);
Category::create([
'name' => 'Asians',
'shortname' => 'asians',
'description' => 'Mostly Korean and Japanese girls'
]);
Category::create([
'name' => 'Funny',
'shortname' => 'funny',
'description' => 'Supposed to be funny'
]);
Category::create([
'name' => 'Pr0n',
'shortname' => 'pr0n',
'description' => 'Crazy Japanese porn you will find my son'
]);
Category::create([
'name' => 'Politics',
'shortname' => 'pol',
'description' => 'Videos about faggots in suits'
]);
Category::create([
'name' => 'Misc',
'shortname' => 'misc',
'description' => 'Stuff that doesnt fit anywhere else'
]);
}
}