/home/techb158/immovalet.com/database/seeders
Edit: /home/techb158/immovalet.com/database/seeders/TestimonialSeeder.php (1183B)
uploadFiles('testimonials');
$testimonials = [
[
'name' => 'Donald H. Hilixer',
'company' => 'Founder, Hilix',
],
[
'name' => 'Rosalina D. William',
'company' => 'Founder, qux co.',
],
[
'name' => 'John Becker',
'company' => 'CEO, Highlands coffee',
],
[
'name' => 'Browfish Dumble',
'company' => 'Founder, Condo',
],
];
Testimonial::truncate();
$faker = Factory::create();
foreach ($testimonials as $index => $item) {
$item['image'] = 'testimonials/' . ($index + 1) . '.jpg';
$item['content'] = $faker->realText(50);
Testimonial::create($item);
}
}
}