#How i make a survey using seeders
11 messages · Page 1 of 1 (latest)
php artisan migrate --seed
i got it
but idk how make the questions show in view
Are you calling them from DatabaseSeeder.php
In run method of DatabaseSeeder,
$this->call([ MySeeder1::class, MySeeder2::class ]);
Ye but what
then the cli qustions should be showing
I thought you meant the cli questions when running a seeder... are you asking how to show data in your DB to the user?
Yep
But now i got other problem