• File: TransactionMethod.php
  • Full Path: /var/www/imaliapi/app/TransactionMethod.php
  • Date Modified: 09/05/2024 7:51 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'];
}