3
votes

When I run php artisan migrate, I get the following error:

[Symfony\Component\Debug\Exception\FatalErrorException]

Class 'Illuminate\database\schema' not found

How can I solve this?

1
illuminate\database\schema? Should be Illuminate\Database\Schema and youll need that class as it is part of the framework and required for your migrations to work :) - Matt Burrow

1 Answers

11
votes

There no Illuminate\Database\Schema, you're most likely want to use Illuminate\Support\Facades\Schema.