<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class ProjectExpenditure extends Model
{
    protected $table = 'm_proyek_expenditure';

    const CREATED_AT = 'created_at';
    const UPDATED_AT = 'updated_at';

    protected $fillable = [
        'name', 'color', 'created_at', 'created_by', 'updated_at', 'updated_by', 'company_id'
    ];
}