46 lines
904 B
PHP
46 lines
904 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Database\Factories\CourseBlockFactory;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class CourseBlock extends Model
|
|
{
|
|
/** @use HasFactory<CourseBlockFactory> */
|
|
use HasFactory;
|
|
|
|
/**
|
|
* @var list<string>
|
|
*/
|
|
protected $fillable = [
|
|
'course_id',
|
|
'type',
|
|
'content',
|
|
'order_index',
|
|
'is_active',
|
|
];
|
|
|
|
/**
|
|
* @return array<string, string>
|
|
*/
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'content' => 'array',
|
|
'order_index' => 'integer',
|
|
'is_active' => 'boolean',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return BelongsTo<Course, $this>
|
|
*/
|
|
public function course(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Course::class);
|
|
}
|
|
}
|