<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Bank extends Model
{
    public $assortment;
    

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'student_id', 'points_log_id', 'points', 'transaction_type'
    ];

    /**
     * The table associated with the model.
     *
     * @var string
     */
    protected $table = 'bank';

     /**
     * Indicates if the model should be timestamped.
     *
     * @var bool
     */
    public $timestamps = false;
   
}
