<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Organization extends Model
{
    public $timestamps = false;
    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */

    protected $fillable = ['name','user_id','organization_pic'];

    public function setCreatedAt($value)
    {
     // Do nothing.
    }
}
