2022-10-08 00:36:20 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Narrativa extends Model
|
|
|
|
{
|
|
|
|
use HasFactory;
|
|
|
|
|
2022-10-10 20:31:12 +00:00
|
|
|
protected $table = 'narrativas';
|
2022-10-08 00:36:20 +00:00
|
|
|
protected $fillable = [
|
|
|
|
'semestre',
|
2022-10-10 20:31:12 +00:00
|
|
|
'contenido',
|
2022-10-08 00:36:20 +00:00
|
|
|
];
|
|
|
|
|
2022-10-10 20:31:12 +00:00
|
|
|
public function estandars()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Estandar::class, 'id_estandar');
|
2022-10-08 00:36:20 +00:00
|
|
|
}
|
|
|
|
}
|