Section.php 269 B

1234567891011121314
  1. <?php
  2. namespace App\Models;
  3. # use Illuminate\Database\Eloquent\Model;
  4. class Section extends Model
  5. {
  6. protected $table = 'section';
  7. public function sectionTemplate() {
  8. return $this->hasOne(SectionTemplate::class, 'id', 'section_template_id');
  9. }
  10. }