• File: IaData.php
  • Full Path: /var/www/sandbox/app/IaData.php
  • Date Modified: 09/05/2024 10:46 PM
  • File size: 258 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App;

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

class IaData extends Model
{
    use HasFactory;

    protected $fillable = [
        'title',
        'info',
        'img_link'
    ];
}