My beer compendium
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
435 B

3 years ago
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Leann extends Model
  5. {
  6. /**
  7. * The attributes that should be mutated to dates.
  8. *
  9. * @var array
  10. */
  11. protected $dates = [
  12. 'created_at',
  13. 'updated__at',
  14. ];
  15. protected $fillable = ['name','description'];
  16. protected $visible = [
  17. 'id',
  18. 'user_id',
  19. 'name',
  20. 'description',
  21. ];
  22. }