|CommentModel newModelQuery() * @method static Builder|CommentModel newQuery() * @method static Builder|CommentModel query() * @method static Builder|CommentModel whereId($value) * @method static Builder|CommentModel wherePostId($value) * @method static Builder|CommentModel whereUserId($value) * @method static Builder|CommentModel whereBody($value) * @method static Builder|CommentModel whereCreatedAt($value) * * @mixin \Eloquent */ class CommentModel extends Model { protected $table = 'comments'; public $timestamps = false; protected $fillable = [ 'post_id', 'user_id', 'body', 'created_at', ]; protected $casts = [ 'created_at' => 'immutable_datetime', ]; }