如何修复“Method Illuminate \ Database \ Schema \ Blueprint :: class不存在”。

问题描述 投票:0回答:1

当我使用php artisan migrate时,我收到此消息。有人可以帮我弄这个吗?我在互联网上搜索,但我找不到任何帮助我的东西。 (我是laravel的新人)

我的桌子:

<?php

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

class CreateServiceTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('service', function (Blueprint $table) {
            $table->increments('id');
            $table->string('title');
            $table->string('description');
            $table->string('icon');
            $table->class('class');
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('service');
    }
}
laravel migration
1个回答
1
投票

$表 - >类( '类'); //类不是类型。

© www.soinside.com 2019 - 2024. All rights reserved.