----------Terminal Command------------------------
php artisan make:seeder BookSeeder
----------BookSeeder Code---------------------------
use Faker\Factory as Faker;
----------Public function run() code------------------
$faker = Faker::create();
for ($i=0; $i < 100; $i++) {
$book = new Book;
$book->book_name = $faker->name;
$book->book_author = $faker->city;
$book->save();
}
----------Database Seeder code public function run()---------------
$this->call([
BookSeeder::class
]);
------------------php artisan code--------------------------------
php artisan db:seed
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter