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

namespace App\Models;

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

class State extends Model
{
    use HasFactory;

    protected $table = 'states';

    protected $fillable = [
        'name',
        'country_id',
        'code',
        'status',
    ];

    public function country()
    {
        return $this->belongsTo(Country::class);
    }
}