Custom Backend OSPRO Surveyor Indonesia

17 lines
386 B

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ActivityDokumen extends Model
{
protected $table = 'm_document_activity';
const CREATED_AT = 'created_at';
const UPDATED_AT = 'updated_at';
protected $fillable = [
'file', 'description', 'activity_id', 'created_at', 'created_by', 'updated_at', 'updated_by'
];
}