Flutter, Laravel, Vue - Idea To Deployment - Part-5- Creating model factories and Seeding Test Data

preview_player
Показать описание
In our Idea to Deployment series our main goal is to simulate the real life Software Development Process as much as we can. So, I am trying to cover most of the concepts and processes that you'll see in real situation as a software developer.

In this video we will create Laravel model factories and also seeding test data in our Database to use it later in our Flutter mobile application and also in our frontend (Vue and Quasar framework).

Countries list seeder link:

Laravel seeding link

Faker library link:
Рекомендации по теме
Комментарии
Автор

What's the new way for Laravel 8 on the below

public function run()
{
factory(Opportunity::class, 300)->create()->each(function ($opportunity){

});
}
}

aviwemusa
Автор

So what about the table favorites. No faker data?

MsSplashIt