| 1234567891011121314 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class Post extends Model
- {
- protected $fillable = ['title', 'content', 'is_published', 'published_at'];
- public function comments(){
- return $this->hasMany(Comment::class);
- }
- }
|