Calendar.php 526 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Factories\HasFactory;
  4. use Illuminate\Database\Eloquent\Model;
  5. use Illuminate\Notifications\Notifiable;
  6. use Laravel\Sanctum\HasApiTokens;
  7. class Account extends Model
  8. {
  9. use HasApiTokens, HasFactory, Notifiable;
  10. protected $primaryKey = 'id';
  11. protected $fillable = [
  12. 'title',
  13. 'start',
  14. 'end',
  15. 'allDay',
  16. 'exempt_reason',
  17. 'duration_unit',
  18. 'timeFilterOption',
  19. ];
  20. public $timestamps = false;
  21. }