Advertisement
Astaroth_

Model

Jul 27th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <?php
  2.  
  3. namespace sisVentas;
  4.  
  5. use Illuminate\Database\Eloquent\Model;
  6.  
  7. class Cliente extends Model
  8. {
  9.     protected $table='cliente';
  10.     protected $primaryKey= "id_cli";
  11.    
  12.     //Laravel puede agregar dos columnas que indiquen cuando se agregaron y modificaron valores.
  13.     //Para que eso ocurra, colocar true en vez de false
  14.     public $timestamps = false;
  15.    
  16.     protected $fillable=[
  17.         'nombre_cli',
  18.         'apellido_cli',
  19.         'empresa_cli'
  20.     ];
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement