| 1234567891011121314 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class Comment extends Model
- {
- protected $fillable = ['author_name', 'content', 'is_approved', 'post_id'];
- public function post() {
- return $this->belongsTo(Post::class);
- }
- }
|