Level 50
What table? The users table? Is it likely to not exist?
Summer Sale! All accounts are 50% off this week.
Hi @all,
i am using this Laravel plugin http://www.maatwebsite.nl/laravel-excel/docs/import to insert data into a database.
How can i check if a table exists and if not how to create?
Excel::load(Input::file('file'), function ($reader) {
$reader->each(function($sheet) {
foreach ($sheet->toArray() as $row) {
User::firstOrCreate($row);
}
});
});
Thx again
Please or to participate in this conversation.