Post.php 266 B

1234567891011121314
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Post extends Model
  5. {
  6. protected $fillable = ['title', 'content', 'is_published', 'published_at'];
  7. public function comments(){
  8. return $this->hasMany(Comment::class);
  9. }
  10. }