This isn't really a Laravel error. It has to do with you database. You are trying to add a column that already exists. Duplicate column names aren't allowed in SQL tables.
So you either have already runned the specific query and you can skip it, or you delete the columns to prevent the error. In your case: delete the created_at column from the UserInfo table.
I suggest to read the error more carefully, since it is really self explaining: Column name "created_at" in table 'UserInfo" is specified more than once
- - - Updated - - -
Use this tutorial: http://tutsnare.com/how-to-install-laravel-on-windows-xampp/
With my repository: https://github.com/bierdopjerose/irosewebsite





Reply With Quote


