• File: MaritalStatus.php
  • Full Path: /var/www/imaliapi/app/MaritalStatus.php
  • Date Modified: 04/22/2025 5:50 PM
  • File size: 228 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App;

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

class MaritalStatus extends Model
{
    use HasFactory;

    protected $fillable = [
        'name'
    ];
}