Laravel 5 migration create table, got error class 'illuminate\database\schema' not found
laravel-5, php
Solution
There no `Illuminate\Database\Schema`, you're most likely want to use `Illuminate\Support\Facades\Schema`.
Problem
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?