<?php

namespace App\Models\ProjetosProgramas;

use Illuminate\Database\Eloquent\Model;

class Fonte extends Model {
    protected $connection = 'mysql';
    protected $table = 'project_program_fontes';
    protected $fillable = ['nome'];
    public $timestamps = false;
}
