Я хочу иметь модель главы, которая содержит столбец района, содержащий модель нескольких округов. Но я понятия не имею, как это связать. Я только что сделал с моделью и миграцией.
class Chapter extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name',
];
public function districts()
{
return $this->hasMany(District::class);
}
}
class District extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name',
];
public function chapter()
{
return $this->belongsTo(Chapter::class);
}
public function blocks()
{
return $this->hasMany(Block::class);
}
}
Что мне делать после этого? Нужно ли указывать район в файле миграции главы?
Вот мой файл миграции.
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateChaptersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('chapters', function (Blueprint $table) {
$table->increments('id');
$table->string('name')->indexed();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('chapters');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateDistrictsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('districts', function (Blueprint $table) {
$table->increments('id');
$table->string('name')->indexed();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('districts');
}
}
Нужно ли связывать их в $ заполняемой части?