I can create migration. It's working fine but when I do php artisan migrate it says
[Illuminate\Database\QueryException]
SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' already exists (SQL: create table
users(idint unsigned not null auto_increment primary key,namevarchar(255) not null,passwordvarchar(255) not null,remember_tokenvarchar(100) null,created_attimestamp null,updated_attimestamp null) default character set utf8 collate utf8_unicode_ci)[PDOException]
SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' already exists
I checked my database.php file and it's working fine and already migrated default users table too to my php my admin mysql.
via Hassam Ali Qazalbash