down vote accept
I found the solution Solution: In config/app.php I had to comment these lines:
/Laravel\Passport\PassportServiceProvider::class, App\Providers\CodeGrantProvider::class, Spatie\Permission\PermissionServiceProvider::class,/
Than you need to migrate the whole database again, than uncomment this line:
Laravel\Passport\PassportServiceProvider::class,
And run php artisan passport:install my application keys weren't working so I had to do:
php artisan config:clear php artisan key:generate php artisan config:clear
And than I could do php artisan serve
Thanks!