Advertisement
EnzoRoerto

Untitled

Jul 26th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App;
  4.  
  5. use Illuminate\Database\Eloquent\Model;
  6.  
  7. class Obra extends Model
  8. {
  9.     protected $table='obras';
  10.     protected $primaryKey='id';
  11.     protected $fillable=['name_obra'];
  12.  
  13.     public function facturas(){
  14.  
  15.         return $this->belongsToMany('App\Factura');
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement