Advertisement
EnzoRoerto

Untitled

Jul 26th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App;
  4.  
  5. use Illuminate\Database\Eloquent\Model;
  6.  
  7. class Detalle_Factura extends Model
  8. {
  9.     protected $table="detalles_facturas";
  10.  
  11.     protected $fillable=[
  12.         'detalle_producto',
  13.         'cantidad',
  14.         'valor_unitario'
  15.     ];
  16.  
  17.     public function facturas(){
  18.  
  19.         return $this->belongsTo('App\Factura');
  20.     }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement