/home2/mshostin/carnival.ms-hostingladz.com/app/Models/CarnivalFlyerImages.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class CarnivalFlyerImages extends Model
{
    use HasFactory;

    protected $fillable = [
        'carnival_id',
        'image'
    ];

    /**
     * Get the carnival that owns the image.
     */
    public function carnival()
    {
        return $this->belongsTo(Carnival::class);
    }
}