How to use Laravel Database Seeding?
In this article, We’ll see how to use Laravel Database Seeding? Seed allows you to insert data into your database. We can use the query builder to manually insert data or Eloquent model factories. To generate a seeder, execute the make:seeder Artisan command. All seeders will be placed in your database/seeds directory. Let’s assume weRead more about How to use Laravel Database Seeding?[…]