35 lines
716 B
PHP
35 lines
716 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
class EducationForm extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'id',
|
|
'name',
|
|
'description',
|
|
'slug',
|
|
];
|
|
|
|
public function directions(): HasMany
|
|
{
|
|
return $this->hasMany('App\Models\Direction', 'education_form_id');
|
|
}
|
|
|
|
public function places(): HasMany
|
|
{
|
|
return $this->hasMany('App\Models\Place', 'education_form_id');
|
|
}
|
|
|
|
public function costs(): HasMany
|
|
{
|
|
return $this->hasMany('App\Models\Cost', 'education_form_id');
|
|
}
|
|
}
|