Appel à la méthode non Éclairer\\Database\\Schema\\Blueprint::incrémente()

Je suis nouveau à laravel 4, et pour mon premier projet, lorsque j'essaie de migrer j'ai eu cette erreur :

Tableau de Migration crée avec succès.
{"error":{"type":"Symfony\Component\Debug\Exception\FatalErrorException","message":"Appel
pour undefiend méthode
Éclairer\Database\Schema\Blueprint::incrémente()","file":"foo","ligne:19"}}

Et cela ma migration de code dans app\migration\2014_10_14_114343_add_cats_and_breeds_table.php:

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class AddCatsAndBreedsTable extends Migration {

public function up()
{
    Schema::create('cats', function($table){
        $table->increments('id');
        $table->string('name');
        $table->date('date_of_birth')->nullable();
        $table->integer('breed_id')->nullable();
        $table->timestamps();
    });

    Schema::create('breeds', function($table){
        $table->incremetns('id');
        $table->string('name');
    });
}


public function down()
{
    Schema::drop('cats');
    Schema::drop('breeds');
}

}

Quelqu'un peut-il m'aider à corriger l'erreur?

OriginalL'auteur | 2014-10-16