forked from nathalie/pedi2
15 lines
321 B
PHP
15 lines
321 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class GrupoDeCompra extends Model
|
|
{
|
|
public $timestamps = false;
|
|
protected $fillable = [ "nombre","region","telefono","correo","referente_finanzas","cantidad_de_nucleos"];
|
|
protected $table = 'grupos_de_compra';
|
|
protected $hidden = ['password'];
|
|
|
|
}
|