Guest User

Untitled

a guest
May 21st, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class Stuff extends Model
  2. {
  3.  
  4. protected $primaryKey = 'stuff_id';
  5.  
  6. protected $fillable = ['stuff_id' , 'title' , 'desc'];
  7.  
  8. protected $dates = ['deleted_at'];
  9. }
  10.  
  11. class Product extends Stuff
  12. {
  13. protected $fillable = ['quantity' , 'picture'];
  14. }
Add Comment
Please, Sign In to add comment