• File: TransactionMethod.php
  • Full Path: /var/www/imaliapitest/app/TransactionMethod.php
  • Date Modified: 05/19/2025 4:29 PM
  • File size: 218 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App;

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

class TransactionMethod extends Model
{
    use HasFactory;

    protected $fillable = ['name'];
}