Section.php 332 B

123456789101112131415161718192021
  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 note()
  8. {
  9. return $this->belongsTo(Note::class);
  10. }
  11. public function sectionTemplate()
  12. {
  13. return $this->belongsTo(SectionTemplate::class);
  14. }
  15. }