You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
2.4 KiB
PHTML

<?php
namespace Database\Seeders;
use App\Models\BlogPost;
use App\Models\Tag;
use Illuminate\Database\Seeder;
use Illuminate\Support\Carbon;
class BlogPostSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
$article = "**Lorem Ipsum** is simply dummy text of the __printing__ and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. \r\n **Lorem Ipsum** is simply dummy text of the __printing__ and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.";
for ($i = 0; $i < 30; $i++) {
BlogPost::factory([
'title' => 'Test Blog Post ' . $i,
'content' => $article,
'location' => null,
'created_at' => Carbon::today()->subDays(rand(1, 100))
])->create()->tags()->saveMany(Tag::inRandomOrder()->limit(random_int(1, 3))->get());
}
BlogPost::factory([
'title' => 'Test Blog Post 1',
'content' => $article,
'location' => null,
'created_at' => Carbon::today()->subDays(rand(1, 100))
])->create()->tags()->saveMany(Tag::inRandomOrder()->limit(random_int(1, 3))->get());
BlogPost::factory([
'title' => 'Blog Post Test 2',
'content' => $article,
'location' => null,
'created_at' => Carbon::today()->subDays(rand(1, 100))
])->create()->tags()->saveMany(Tag::inRandomOrder()->limit(random_int(1, 3))->get());
}
}