Call.php 208 B

1234567891011121314
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Call extends Model
  5. {
  6. protected $fillable = [
  7. 'beginning', 'ending', 'break', 'type'
  8. ];
  9. public $timestamps = false;
  10. }