<?php

namespace Yas\Ocbc\Models;

use Illuminate\Database\Eloquent\Model;
use Yas\Ocbc\Contracts\Transaction as TransactionContract;

class Transaction extends Model implements TransactionContract
{
    /**
     * The table associated with the model.
     *
     * @var string
     */
    protected $table = 'ocbc_transaction';

    /**
     * The attributes that aren't mass assignable.
     *
     * @var array
     */
    protected $guarded = [
        'id',
        'created_at',
        'updated_at',
    ];
}