<?php
public function up()
{
Schema::create('specialties', function (Blueprint $table) {
$table->increments('id');
$table->string('name')->unique;
$table->timestamps();
});
Schema::create('t_specialties', function (Blueprint $table) {
$table->integer('therapist_id');
$table->integer('spec_id');
$table->primary(['therapist_id','spec_id']);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('specialties');
Schema::dropIfExists('t_specialties');
}
И моя модель выглядит следующим образом
class Therapist extends Model
{
protected $fillable = ['image'] ;
public function specialty()
{
return $this->belongsToMany(Specialty::class);
}
}
Метод, который я использую, похож на добавление тегов в блогно каждый раз, когда я пытаюсь повозиться в cmd, я получаю сообщение об ошибке на фотографии выше.Я не могу понять, в чем проблема: (